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>2015-11-09 09:16:13 -0500
commit7cc88bfe327ba826ffa5199c96c91178862b22f0 (patch)
treee9a90f848fff1b003e6b0a88574653474a20b341
parent6a681c2c13afb6e76a6881b9dae928b9ff66a395 (diff)
downloadjquery-ui-7cc88bfe327ba826ffa5199c96c91178862b22f0.tar.gz
jquery-ui-7cc88bfe327ba826ffa5199c96c91178862b22f0.zip
Resizable: Fix data reference for `ui-resizable-alsoresize`
Fixes #14788
-rw-r--r--ui/widgets/resizable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/widgets/resizable.js b/ui/widgets/resizable.js
index da704de4b..88ad41180 100644
--- a/ui/widgets/resizable.js
+++ b/ui/widgets/resizable.js
@@ -1032,7 +1032,7 @@ $.ui.plugin.add( "resizable", "alsoResize", {
},
stop: function() {
- $( this ).removeData( "resizable-alsoresize" );
+ $( this ).removeData( "ui-resizable-alsoresize" );
}
} );