diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-01-19 23:25:38 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-01-19 23:25:38 +0000 |
commit | 010385b2fa4f0656953c2fc70c363c9cd9f74a9d (patch) | |
tree | b04f5abb6e314ffb11627f036b8d0404bd56aa63 /demos | |
parent | ebf5160587ec2689a97018bc0c24082a3e84c02e (diff) | |
download | jquery-ui-010385b2fa4f0656953c2fc70c363c9cd9f74a9d.tar.gz jquery-ui-010385b2fa4f0656953c2fc70c363c9cd9f74a9d.zip |
Dialog, position: Removed bgiframe option; always use bgiframe when available.
Fixes #5071 - Remove bgiframe option from all plugins.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/dialog/animated.html | 1 | ||||
-rw-r--r-- | demos/dialog/default.html | 1 | ||||
-rw-r--r-- | demos/dialog/modal-confirmation.html | 1 | ||||
-rw-r--r-- | demos/dialog/modal-form.html | 1 | ||||
-rw-r--r-- | demos/dialog/modal-message.html | 1 | ||||
-rw-r--r-- | demos/dialog/modal.html | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/demos/dialog/animated.html b/demos/dialog/animated.html index 43dfed061..1e134b3b1 100644 --- a/demos/dialog/animated.html +++ b/demos/dialog/animated.html @@ -17,7 +17,6 @@ <script type="text/javascript" src="../../ui/jquery.effects.explode.js"></script> <link type="text/css" href="../demos.css" rel="stylesheet" /> <script type="text/javascript"> - $.ui.dialog.prototype.options.bgiframe = true; // increase the default animation speed to exaggerate the effect $.fx.speeds._default = 1000; $(function() { diff --git a/demos/dialog/default.html b/demos/dialog/default.html index 2625bdd33..8b44d3027 100644 --- a/demos/dialog/default.html +++ b/demos/dialog/default.html @@ -14,7 +14,6 @@ <script type="text/javascript" src="../../ui/jquery.ui.dialog.js"></script> <link type="text/css" href="../demos.css" rel="stylesheet" /> <script type="text/javascript"> - $.ui.dialog.prototype.options.bgiframe = true; $(function() { $("#dialog").dialog(); }); diff --git a/demos/dialog/modal-confirmation.html b/demos/dialog/modal-confirmation.html index 9e8e86acd..66c999dde 100644 --- a/demos/dialog/modal-confirmation.html +++ b/demos/dialog/modal-confirmation.html @@ -19,7 +19,6 @@ $("#dialog").dialog("destroy"); $("#dialog-confirm").dialog({ - bgiframe: true, resizable: false, height:140, modal: true, diff --git a/demos/dialog/modal-form.html b/demos/dialog/modal-form.html index 36160b159..65ac49b3c 100644 --- a/demos/dialog/modal-form.html +++ b/demos/dialog/modal-form.html @@ -73,7 +73,6 @@ } $("#dialog-form").dialog({ - bgiframe: true, autoOpen: false, height: 300, width: 350, diff --git a/demos/dialog/modal-message.html b/demos/dialog/modal-message.html index 6478b84d9..7346011ab 100644 --- a/demos/dialog/modal-message.html +++ b/demos/dialog/modal-message.html @@ -20,7 +20,6 @@ $("#dialog").dialog("destroy"); $("#dialog-message").dialog({ - bgiframe: true, modal: true, buttons: { Ok: function() { diff --git a/demos/dialog/modal.html b/demos/dialog/modal.html index 276c49717..2f0df5888 100644 --- a/demos/dialog/modal.html +++ b/demos/dialog/modal.html @@ -19,7 +19,6 @@ $("#dialog").dialog("destroy"); $("#dialog-modal").dialog({ - bgiframe: true, height: 140, modal: true }); |