diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-11-09 09:16:13 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2016-06-09 17:29:41 -0400 |
commit | 228ca7250ab006cacda83c897e66c112312130fa (patch) | |
tree | 2520c3f8c54022ae3a00ff5a1c42914145aaf383 | |
parent | f1df9a81c988dc1e2bb7ab3332e96f9537e72955 (diff) | |
download | jquery-ui-228ca7250ab006cacda83c897e66c112312130fa.tar.gz jquery-ui-228ca7250ab006cacda83c897e66c112312130fa.zip |
Resizable: Fix data reference for `ui-resizable-alsoresize`
Fixes #14788
(cherry picked from commit 7cc88bfe327ba826ffa5199c96c91178862b22f0)
-rw-r--r-- | ui/resizable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/resizable.js b/ui/resizable.js index 6c010783a..f56449b45 100644 --- a/ui/resizable.js +++ b/ui/resizable.js @@ -1024,7 +1024,7 @@ $.ui.plugin.add("resizable", "alsoResize", { }, stop: function() { - $(this).removeData("resizable-alsoresize"); + $( this ).removeData( "ui-resizable-alsoresize" ); } }); |