We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26bcf97 commit 42d33f2Copy full SHA for 42d33f2
ui/jquery.ui.dialog.js
@@ -715,12 +715,11 @@ $.extend( $.ui.dialog.overlay, {
715
$( window ).bind( "resize.dialog-overlay", $.ui.dialog.overlay.resize );
716
}
717
718
- var $el = ( this.oldInstances.pop() || $( "<div>" ).addClass( "ui-widget-overlay" ) )
719
- .appendTo( document.body )
720
- .css({
721
- width: this.width(),
722
- height: this.height()
723
- });
+ var $el = ( this.oldInstances.pop() || $( "<div>" ).addClass( "ui-widget-overlay" ) );
+ $el.appendTo( document.body ).css({
+ width: this.width(),
+ height: this.height()
+ });
724
725
if ( $.fn.bgiframe ) {
726
$el.bgiframe();
0 commit comments