From 7cc88bfe327ba826ffa5199c96c91178862b22f0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Mon, 9 Nov 2015 09:16:13 -0500 Subject: [PATCH] Resizable: Fix data reference for `ui-resizable-alsoresize` Fixes #14788 --- ui/widgets/resizable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ); } } ); -- 2.39.5