Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'MDL-62738_34' of https://github.com/mfabriczy/moodle in…
…to MOODLE_34_STABLE
  • Loading branch information
David Monllao committed Oct 9, 2018
2 parents 8d6c617 + 35f6db9 commit cde9c8c
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions lib/editor/tinymce/module.js
Expand Up @@ -59,28 +59,6 @@ M.editor_tinymce.init_editor = function(Y, editorid, options) {
}
}

// 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();
});

// Whenever a touch event is registered against the content document,
// reapply focus. This works around an issue with the location caret not
// being focusable without use of the Loupe.
ed.contentDocument.addEventListener('touchend', function() {
ed.contentWindow.focus();
});
});
};
}

// Retain any setup which is already defined.
options.originalSetupFunction = options.setup || function(){};
options.setup = function(editor) {
Expand Down

0 comments on commit cde9c8c

Please sign in to comment.