mirror of
https://github.com/moodle/moodle.git
synced 2025-03-20 07:30:01 +01:00
Merge branch 'MDL-54633-master-tinymce' of git://github.com/mudrd8mz/moodle
This commit is contained in:
commit
5d84a61419
@ -45,7 +45,6 @@ M.editor_tinymce.init_editor = function(Y, editorid, options) {
|
||||
M.editor_tinymce.initialised = true;
|
||||
M.util.js_pending('editors');
|
||||
options.oninit = "M.editor_tinymce.init_callback";
|
||||
options.onchange_callback = "M.editor_tinymce.onchange_callback";
|
||||
}
|
||||
|
||||
M.editor_tinymce.editor_options[editorid] = options;
|
||||
@ -93,12 +92,6 @@ M.editor_tinymce.init_callback = function() {
|
||||
M.util.js_complete('editors');
|
||||
}
|
||||
|
||||
M.editor_tinymce.onchange_callback = function(editorinstance) {
|
||||
// We need to keep the underlying textarea in sync so that when the form
|
||||
// validator is triggered, it has the value property up-to-date.
|
||||
editorinstance.save();
|
||||
};
|
||||
|
||||
M.editor_tinymce.init_filepicker = function(Y, editorid, options) {
|
||||
M.editor_tinymce.filepicker_options[editorid] = options;
|
||||
};
|
||||
|
@ -2316,6 +2316,9 @@ var skipClientValidation = false;
|
||||
} catch(e) {
|
||||
return true;
|
||||
}
|
||||
if (typeof window.tinyMCE !== \'undefined\') {
|
||||
window.tinyMCE.triggerSave();
|
||||
}
|
||||
if (!myValidator()) {
|
||||
ev.preventDefault();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user