mirror of
https://github.com/moodle/moodle.git
synced 2025-07-25 00:02:18 +02:00
MDL-36803 TinyMCE: Fix TinyMCE following touch events on iOS browsers
This commit is contained in:
@@ -56,6 +56,21 @@ M.editor_tinymce.init_editor = function(Y, editorid, options) {
|
||||
M.cfg.wwwroot + '/lib/editor/tinymce/plugins/' + filedetails[1]);
|
||||
}
|
||||
}
|
||||
|
||||
// We have to override the editor setup to work around a bug in iOS browsers - MDL-36803.
|
||||
if (Y.UA.ios) {
|
||||
// Retain any setup which is already defined.
|
||||
options.originalSetupFunction = options.setup || function(){};
|
||||
options.setup = function(editor) {
|
||||
options.originalSetupFunction();
|
||||
editor.onPostRender.add(function(ed) {
|
||||
// Whenever there is a keydown event, ensure that the contentWindow still have focus.
|
||||
ed.contentDocument.addEventListener('keydown', function() {
|
||||
ed.contentWindow.focus();
|
||||
});
|
||||
});
|
||||
};
|
||||
}
|
||||
tinyMCE.init(options);
|
||||
|
||||
var item = document.getElementById(editorid+'_filemanager');
|
||||
|
Reference in New Issue
Block a user