aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-11-09 09:16:13 -0500
committerScott González <scott.gonzalez@gmail.com>2016-06-09 17:29:41 -0400
commit228ca7250ab006cacda83c897e66c112312130fa (patch)
tree2520c3f8c54022ae3a00ff5a1c42914145aaf383
parentf1df9a81c988dc1e2bb7ab3332e96f9537e72955 (diff)
downloadjquery-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.js2
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" );
}
});