diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2009-01-27 16:53:46 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2009-01-27 16:53:46 +0000 |
commit | 2ef2b87ccb755d0195d748d1da24d5a96aad7abe (patch) | |
tree | 140f3fccac92bf22286105f8cf81456adf6180cc /demos/dialog | |
parent | 9dbeb228f6abc7cb353db0aceebe3001a0f3d357 (diff) | |
download | jquery-ui-2ef2b87ccb755d0195d748d1da24d5a96aad7abe.tar.gz jquery-ui-2ef2b87ccb755d0195d748d1da24d5a96aad7abe.zip |
dialog:
- implemented themeroller overlay, removes option overlay (now handled through CSS) (implements #3681)
- implemented shadow option (boolean), if set to true, adds shadow from css framework (implements #3681)
Diffstat (limited to 'demos/dialog')
-rw-r--r-- | demos/dialog/modal-form.html | 4 | ||||
-rw-r--r-- | demos/dialog/modal-message.html | 4 | ||||
-rw-r--r-- | demos/dialog/modal.html | 6 |
3 files changed, 1 insertions, 13 deletions
diff --git a/demos/dialog/modal-form.html b/demos/dialog/modal-form.html index 217e8c3c6..c024f7ed4 100644 --- a/demos/dialog/modal-form.html +++ b/demos/dialog/modal-form.html @@ -21,10 +21,6 @@ bgiframe: true, height: 300, modal: true, - overlay: { - backgroundColor: '#000', - opacity: 0.5 - }, buttons: { 'Create user account': function() { $(this).dialog('close'); diff --git a/demos/dialog/modal-message.html b/demos/dialog/modal-message.html index 6052ac155..a0a039f85 100644 --- a/demos/dialog/modal-message.html +++ b/demos/dialog/modal-message.html @@ -15,10 +15,6 @@ $("#dialog").dialog({ bgiframe: true, modal: true, - overlay: { - backgroundColor: '#000', - opacity: 0.5 - }, buttons: { Ok: function() { $(this).dialog('close'); diff --git a/demos/dialog/modal.html b/demos/dialog/modal.html index f3e7013a5..ffe43d4f1 100644 --- a/demos/dialog/modal.html +++ b/demos/dialog/modal.html @@ -15,11 +15,7 @@ $("#dialog").dialog({ bgiframe: true, height: 140, - modal: true, - overlay: { - backgroundColor: '#000', - opacity: 0.5 - } + modal: true }); }); </script> |