diff options
author | polomoshnov <alex.polomoshnov@gmail.com> | 2011-09-23 13:57:02 +1200 |
---|---|---|
committer | polomoshnov <alex.polomoshnov@gmail.com> | 2011-09-23 13:57:02 +1200 |
commit | 0b4f80899c79a08319aa35a2fdf3e2743e7169ed (patch) | |
tree | 3202d7edde7b71afbadb87f7b3f6dc0bfeee0012 /ui/jquery.ui.resizable.js | |
parent | 34a0479d1cbb0acf5d86818506deec78bfbb373b (diff) | |
download | jquery-ui-0b4f80899c79a08319aa35a2fdf3e2743e7169ed.tar.gz jquery-ui-0b4f80899c79a08319aa35a2fdf3e2743e7169ed.zip |
Removed unnecessary code.
Diffstat (limited to 'ui/jquery.ui.resizable.js')
-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 673a8fd75..baca11f83 100644 --- a/ui/jquery.ui.resizable.js +++ b/ui/jquery.ui.resizable.js @@ -292,7 +292,7 @@ $.widget("ui.resizable", $.ui.mouse, { if (!trigger) return false; // Calculate the attrs that will be change - var data = trigger.apply(this, [event, dx, dy]), ie6 = $.browser.msie && $.browser.version < 7, csdif = this.sizeDiff; + var data = trigger.apply(this, [event, dx, dy]); // Put this in the mouseDrag handler since the user can start pressing shift while resizing this._updateVirtualBoundaries(event.shiftKey); |