aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.dialog.js
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2009-07-09 11:17:19 +0000
committerJörn Zaefferer <joern.zaefferer@gmail.com>2009-07-09 11:17:19 +0000
commita2899b145feecfae98b2338e5b8f5e0415efa76b (patch)
tree45cd310de41d8ff995a29d4e0d899163c8ee8ba4 /ui/ui.dialog.js
parentf51cdf206cb208948190097b981abf9d4485fc43 (diff)
downloadjquery-ui-a2899b145feecfae98b2338e5b8f5e0415efa76b.tar.gz
jquery-ui-a2899b145feecfae98b2338e5b8f5e0415efa76b.zip
replacing bgiframe with ui.stackfix, updated dialog and its demos accordingly
Diffstat (limited to 'ui/ui.dialog.js')
-rw-r--r--ui/ui.dialog.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js
index dc10b075d..da7c677c1 100644
--- a/ui/ui.dialog.js
+++ b/ui/ui.dialog.js
@@ -134,7 +134,7 @@ $.widget("ui.dialog", {
self._createButtons(options.buttons);
self._isOpen = false;
- (options.bgiframe && $.fn.bgiframe && uiDialog.bgiframe());
+ (options.stackfix && $.fn.stackfix && uiDialog.stackfix());
(options.autoOpen && self.open());
},
@@ -526,7 +526,7 @@ $.extend($.ui.dialog, {
version: "@VERSION",
defaults: {
autoOpen: true,
- bgiframe: false,
+ stackfix: false,
buttons: {},
closeOnEscape: true,
closeText: 'close',
@@ -596,7 +596,7 @@ $.extend($.ui.dialog.overlay, {
height: this.height()
});
- (dialog.options.bgiframe && $.fn.bgiframe && $el.bgiframe());
+ (dialog.options.stackfix && $.fn.stackfix && $el.stackfix());
this.instances.push($el);
return $el;