From 9eac0c8c9155677e2607c5e673a848a4b88e471b Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Mon, 21 Oct 2013 13:40:28 +0200 Subject: [PATCH] Followup 1878c7c5: fix check for nonexistent property .draggingAndDropping It's always been named .relocating Change-Id: I2fcb28cdad037880759420986d8010ee5711d691 --- modules/ve/ui/ve.ui.Context.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ve/ui/ve.ui.Context.js b/modules/ve/ui/ve.ui.Context.js index 6e6aeb4d60..bf675e03c5 100644 --- a/modules/ve/ui/ve.ui.Context.js +++ b/modules/ve/ui/ve.ui.Context.js @@ -82,7 +82,7 @@ ve.ui.Context.prototype.onChange = function ( transactions, selection ) { if ( this.popup.isVisible() ) { this.hide(); this.update(); - } else if ( !this.selecting && !this.draggingAndDropping ) { + } else if ( !this.selecting && !this.relocating ) { this.update(); } }