aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-10-26 10:53:17 -0400
committerScott González <scott.gonzalez@gmail.com>2012-10-26 10:53:17 -0400
commit68cab60fa758b34c024742daa9dbc3e6bf6a0521 (patch)
treedfb67b446b25bda5f16159ff05e7a53f8f83cdbf /ui
parent039ee746d3eaeeaa4ad92ecd8ebf4e6fcd11768c (diff)
downloadjquery-ui-68cab60fa758b34c024742daa9dbc3e6bf6a0521.tar.gz
jquery-ui-68cab60fa758b34c024742daa9dbc3e6bf6a0521.zip
Removed bgiframe.
Diffstat (limited to 'ui')
-rw-r--r--ui/jquery.ui.autocomplete.js4
-rw-r--r--ui/jquery.ui.dialog.js8
-rw-r--r--ui/jquery.ui.position.js4
-rw-r--r--ui/jquery.ui.tooltip.js3
4 files changed, 0 insertions, 19 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js
index 327bfa17e..1da5a6b25 100644
--- a/ui/jquery.ui.autocomplete.js
+++ b/ui/jquery.ui.autocomplete.js
@@ -288,10 +288,6 @@ $.widget( "ui.autocomplete", {
.addClass( "ui-helper-hidden-accessible" )
.insertAfter( this.element );
- if ( $.fn.bgiframe ) {
- this.menu.element.bgiframe();
- }
-
// turning off autocomplete prevents the browser from remembering the
// value when navigating through history, so we re-enable autocomplete
// if the page is unloaded before the widget is destroyed. #7790
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;
},
diff --git a/ui/jquery.ui.position.js b/ui/jquery.ui.position.js
index edbb0f6ff..a5dc31834 100644
--- a/ui/jquery.ui.position.js
+++ b/ui/jquery.ui.position.js
@@ -230,10 +230,6 @@ $.fn.position = function( options ) {
}
});
- if ( $.fn.bgiframe ) {
- elem.bgiframe();
- }
-
if ( options.using ) {
// adds feedback as second argument to using callback, if present
using = function( props ) {
diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js
index f93dd7a2f..f1f919ad3 100644
--- a/ui/jquery.ui.tooltip.js
+++ b/ui/jquery.ui.tooltip.js
@@ -357,9 +357,6 @@ $.widget( "ui.tooltip", {
.addClass( "ui-tooltip-content" )
.appendTo( tooltip );
tooltip.appendTo( this.document[0].body );
- if ( $.fn.bgiframe ) {
- tooltip.bgiframe();
- }
this.tooltips[ id ] = element;
return tooltip;
},