Merge "Followup 1878c7c5: fix check for nonexistent property .draggingAndDropping"

This commit is contained in:
jenkins-bot 2013-10-23 12:49:01 +00:00 committed by Gerrit Code Review
commit f3565f2ed8

View file

@ -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();
}
}