MDL-36803 TinyMCE: Fix TinyMCE following touch events on iOS browsers

This commit is contained in:
Andrew Nicols
2013-08-19 19:12:39 +01:00
parent 50ff861263
commit be94c6d88d

View File

@@ -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');