diff options
author | Kevin Dalman <development@allpro.net> | 2010-06-10 08:03:26 +0800 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-06-10 09:33:01 +0800 |
commit | aa416fcfd9ba49ef2d8426ccc5a002388d390574 (patch) | |
tree | 36a16778448e26e5c1e8831771f05383dfe726bd /ui | |
parent | a78d5ee4c8c21b2da2631d51a74779e958793c9d (diff) | |
download | jquery-ui-aa416fcfd9ba49ef2d8426ccc5a002388d390574.tar.gz jquery-ui-aa416fcfd9ba49ef2d8426ccc5a002388d390574.zip |
Resizable: Add missing var declaration to new _reset function/subroutine.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.resizable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.resizable.js b/ui/jquery.ui.resizable.js index 2b3a87e85..1f7215e2c 100644 --- a/ui/jquery.ui.resizable.js +++ b/ui/jquery.ui.resizable.js @@ -589,7 +589,7 @@ $.ui.plugin.add("resizable", "alsoResize", { stop: function (event, ui) { var self = $(this).data("resizable"); - _reset = function (exp) { + var _reset = function (exp) { $(exp).each(function() { var el = $(this); // reset position for Opera - no need to verify it was changed |