mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-53249 atto: Make sure all editors see end move event
This commit is contained in:
parent
03b8b55f10
commit
1f0d77f7cd
@ -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;
|
||||
},
|
||||
|
@ -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;
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user