mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
All: Remove workaround for .offset() setter bug from older versions of jQuery.
This commit is contained in:
parent
9681b1fd7e
commit
ca0ac5a64f
2
ui/jquery.ui.autocomplete.js
vendored
2
ui/jquery.ui.autocomplete.js
vendored
@ -201,8 +201,6 @@ $.widget( "ui.autocomplete", {
|
||||
}
|
||||
})
|
||||
.zIndex( this.element.zIndex() + 1 )
|
||||
// workaround for jQuery bug #5781 http://dev.jquery.com/ticket/5781
|
||||
.css({ top: 0, left: 0 })
|
||||
.hide()
|
||||
.data( "menu" );
|
||||
if ( $.fn.bgiframe ) {
|
||||
|
5
ui/jquery.ui.dialog.js
vendored
5
ui/jquery.ui.dialog.js
vendored
@ -518,10 +518,7 @@ $.widget("ui.dialog", {
|
||||
if (!isVisible) {
|
||||
this.uiDialog.show();
|
||||
}
|
||||
this.uiDialog
|
||||
// workaround for jQuery bug #5781 http://dev.jquery.com/ticket/5781
|
||||
.css({ top: 0, left: 0 })
|
||||
.position(position);
|
||||
this.uiDialog.position(position);
|
||||
if (!isVisible) {
|
||||
this.uiDialog.hide();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user