From 228ca7250ab006cacda83c897e66c112312130fa 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 (cherry picked from commit 7cc88bfe327ba826ffa5199c96c91178862b22f0) --- ui/resizable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ); } }); -- 2.39.5