/* Import plugin specific language pack */ tinyMCE.importPluginLanguagePack('save', 'en,zh_cn,cs,fa,fr_ca,fr,de,pl,pt_br'); /** * Returns the HTML contents of the save control. */ function TinyMCE_save_getControlHTML(control_name) { switch (control_name) { case "save": return ''; } return ""; } /** * Executes the save command. */ function TinyMCE_save_execCommand(editor_id, element, command, user_interface, value) { // Handle commands switch (command) { case "mceSave": var formObj = tinyMCE.selectedInstance.formElement.form; if (formObj) { tinyMCE.triggerSave(); // Disable all UI form elements that TinyMCE created for (var i=0; i