diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-10-26 10:53:17 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-26 10:53:17 -0400 |
commit | 68cab60fa758b34c024742daa9dbc3e6bf6a0521 (patch) | |
tree | dfb67b446b25bda5f16159ff05e7a53f8f83cdbf /ui/jquery.ui.dialog.js | |
parent | 039ee746d3eaeeaa4ad92ecd8ebf4e6fcd11768c (diff) | |
download | jquery-ui-68cab60fa758b34c024742daa9dbc3e6bf6a0521.tar.gz jquery-ui-68cab60fa758b34c024742daa9dbc3e6bf6a0521.zip |
Removed bgiframe.
Diffstat (limited to 'ui/jquery.ui.dialog.js')
-rw-r--r-- | ui/jquery.ui.dialog.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ui/jquery.ui.dialog.js b/ui/jquery.ui.dialog.js index 4188a38c0..e96802e96 100644 --- a/ui/jquery.ui.dialog.js +++ b/ui/jquery.ui.dialog.js @@ -170,10 +170,6 @@ $.widget("ui.dialog", { this._createButtons( options.buttons ); this._isOpen = false; - if ( $.fn.bgiframe ) { - uiDialog.bgiframe(); - } - // prevent tabbing out of dialogs this._on( uiDialog, { keydown: function( event ) { if ( event.keyCode !== $.ui.keyCode.TAB ) { @@ -670,10 +666,6 @@ $.extend( $.ui.dialog.overlay, { dialog._keepFocus( event ); }); - if ( $.fn.bgiframe ) { - $el.bgiframe(); - } - this.instances.push( $el ); return $el; }, |