Angular Bootstrap 模态弹出窗口不调整大小(大)

Angular Bootstrap Modal popup does not resize (large)

AJS

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

HTML

你可以看到它没有将 'modal-lg' 注入 html code.Why 的地方? 任何帮助将不胜感激。

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

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

Link 到 documentation.