From 5e936731bd4fb7a9cb14c39554d6c26e4ef042c6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 23 Dec 2008 04:32:44 +0000 Subject: [PATCH] Dialog: Passing in a DOMElement instead of a jQuery object for alsoResize to avoid resizable bug. --- ui/ui.dialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ui.dialog.js b/ui/ui.dialog.js index 70b4bbd16..903ab1dad 100644 --- a/ui/ui.dialog.js +++ b/ui/ui.dialog.js @@ -312,7 +312,7 @@ $.widget("ui.dialog", { this.uiDialog.resizable({ cancel: '.ui-dialog-content', - alsoResize: this.element, + alsoResize: this.element[0], helper: options.resizeHelper, maxWidth: options.maxWidth, maxHeight: options.maxHeight, -- 2.39.5