[jQuery-UI] Re-Center a dialog after windows was resized
Posted by skoch on 8. November 2010If a jQuery UI dialog is open centered and the browser is resized, than the diqlog is no longer placed in the center of the window. Therefor we have to move it back to the center of the window. var windowResizeTimeout; $(window).resize(function() { clearTimeout ( windowResizeTimeout ); windowResizeTimeout = setTimeout ( ‘$(“.ui-dialog-content”).dialog(“option”, “position”, “center”);’, 250 [...]