From 8cd1dc36c15b1a413ae178ea987b121d866a2828 Mon Sep 17 00:00:00 2001 From: saqimtiaz Date: Mon, 9 Mar 2020 22:07:34 +0100 Subject: [PATCH] Fix suspected typo that impacts refresh handling (#4464) --- core/modules/widgets/draggable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/widgets/draggable.js b/core/modules/widgets/draggable.js index d1bdf2a16..e12f2c693 100644 --- a/core/modules/widgets/draggable.js +++ b/core/modules/widgets/draggable.js @@ -80,7 +80,7 @@ Selectively refreshes the widget if needed. Returns true if the widget or any of */ DraggableWidget.prototype.refresh = function(changedTiddlers) { var changedAttributes = this.computeAttributes(); - if(changedTiddlers.tag || changedTiddlers["class"]) { + if(changedAttributes.tag || changedAttributes["class"]) { this.refreshSelf(); return true; }