#2297 closed enhancement (fixed)
[dialog] split out modal options
Reported by: | Scott González | Owned by: | rdworth |
---|---|---|---|
Priority: | major | Milestone: | 1.5 |
Component: | ui.core | Version: | 1.2.2 |
Keywords: | dialog modal | Cc: | |
Blocked by: | Blocking: |
Description
The modal option for dialogs should only be a boolean. Setting the css for the overlay should be it's own option.
$('#foo').dialog({ modal: { opacity: 0.5 } });
becomes:
$('#foo').dialog({ modal: true, overlay: { opacity: 0.5 } });
This will allow the user to set a default configuration for all modal dialogs when #2295 is complete.
Change History (4)
comment:1 Changed 15 years ago by
Owner: | changed from paul to rworth |
---|
comment:2 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:4 Changed 14 years ago by
Milestone: | → 1.5 |
---|
Note: See
TracTickets for help on using
tickets.
Fixed in [4696].