MDL-53249 atto: Make sure all editors see end move event

This commit is contained in:
Eric Merrill 2016-02-25 21:37:16 -05:00
parent 03b8b55f10
commit 1f0d77f7cd
4 changed files with 14 additions and 5 deletions

View File

@ -1973,7 +1973,10 @@ EditorSelection.prototype = {
return;
}
Y.soon(Y.bind(this._hasSelectionChanged, this, e));
}, null, this);
}, {
// Standalone will make sure all editors receive the end event.
standAlone: true
}, this);
return this;
},

File diff suppressed because one or more lines are too long

View File

@ -1960,7 +1960,10 @@ EditorSelection.prototype = {
return;
}
Y.soon(Y.bind(this._hasSelectionChanged, this, e));
}, null, this);
}, {
// Standalone will make sure all editors receive the end event.
standAlone: true
}, this);
return this;
},

View File

@ -118,7 +118,10 @@ EditorSelection.prototype = {
return;
}
Y.soon(Y.bind(this._hasSelectionChanged, this, e));
}, null, this);
}, {
// Standalone will make sure all editors receive the end event.
standAlone: true
}, this);
return this;
},