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

This commit is contained in:
Eric Merrill
2016-02-25 21:37:07 -05:00
parent e50cd7c14f
commit df64a2ca06
4 changed files with 14 additions and 5 deletions
@@ -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
@@ -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;
},
+4 -1
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;
},