Reputation: 857
uibmodal makes the parent page go dim. Is it possible to stop that from happening?
Upvotes: 1
Views: 577
Reputation: 3074
Use backdrop: false, per the docs:
backdrop (Type: boolean|string, Default: true) -
Controls presence of a backdrop. Allowed values: true (default), false (no backdrop), 'static' (disables modal closing by click on the backdrop).
Upvotes: 0
Reputation: 214
I achieved that by adding css:
.modal-backdrop.in {
display: none;
}
Upvotes: 2