AJS
$scope.WizardModal = $modal.open({
templateUrl: 'Wizard.html',
size: 'lg',
scope: $scope,
});
HTML
你可以看到它没有注入' modal-lg'进入HTML代码。为什么? 任何帮助都将受到高度赞赏。
答案 0 :(得分:1)
早期版本的AngularUI没有实现size
配置设置。它是在Angular UI版本0.12.0中添加的(参见commit)。更新到此版本应该支持模态窗口大小。
$scope.WizardModal = $modal.open({
templateUrl: 'Wizard.html',
size: 'lg',
scope: $scope,
});
链接到documentation。