Tisha
Tisha

Reputation: 857

Is it possible to drag uibmodal or to make the parent page not go dim?

uibmodal makes the parent page go dim. Is it possible to stop that from happening?

Upvotes: 1

Views: 577

Answers (2)

Tony Basallo
Tony Basallo

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).

Docs

Upvotes: 0

Gracia
Gracia

Reputation: 214

I achieved that by adding css:

.modal-backdrop.in {
    display: none;
}

Upvotes: 2

Related Questions