From 7d24c1a57ffcfa461dc48f6024b33e548179c491 Mon Sep 17 00:00:00 2001 From: eXtreme Date: Fri, 25 Jun 2010 23:27:43 +0800 Subject: [PATCH] Resizable: Adding missing variable initialization. Fixes #5694 - Invalid reference in UI Resizable hack for Opera. --- ui/jquery.ui.resizable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/jquery.ui.resizable.js b/ui/jquery.ui.resizable.js index 1f7215e2c..6179de03a 100644 --- a/ui/jquery.ui.resizable.js +++ b/ui/jquery.ui.resizable.js @@ -587,7 +587,7 @@ $.ui.plugin.add("resizable", "alsoResize", { }, stop: function (event, ui) { - var self = $(this).data("resizable"); + var self = $(this).data("resizable"), o = self.options; var _reset = function (exp) { $(exp).each(function() { -- 2.39.5