Sampath
Sampath

Reputation: 65938

Angular Bootstrap Modal popup does not resize (large)

AJS

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

HTML

enter image description here

You can see that where it does not inject the 'modal-lg' into html code.Why's that ? Any help would be highly appreciated.

Upvotes: 1

Views: 713

Answers (1)

dfsq
dfsq

Reputation: 193301

Earlier versions of AngularUI didn't implement size configuration setting. It was added in Angular UI version 0.12.0 (see commit). Updating to this version should bring support to modal window sizes.

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

Link to documentation.

Upvotes: 1

Related Questions