Angular Bootstrap Modal弹出窗口不会调整大小(大)

时间:2015-02-11 12:13:27

标签: angularjs twitter-bootstrap-3

AJS

$scope.WizardModal = $modal.open({
                                templateUrl: 'Wizard.html',
                                size: 'lg',
                                scope: $scope,
                            });

HTML

enter image description here

你可以看到它没有注入' modal-lg'进入HTML代码。为什么? 任何帮助都将受到高度赞赏。

1 个答案:

答案 0 :(得分:1)

早期版本的AngularUI没有实现size配置设置。它是在Angular UI版本0.12.0中添加的(参见commit)。更新到此版本应该支持模态窗口大小。

$scope.WizardModal = $modal.open({
    templateUrl: 'Wizard.html',
    size: 'lg',
    scope: $scope,
});

链接到documentation