/* Import plugin specific language pack */ tinyMCE.importPluginLanguagePack('preview', 'cs,de,el,en,fr_ca,it,ko,pt,sv,zh_cn,fa,fr,pl,pt_br'); /** * Returns the HTML contents of the preview control. */ function TinyMCE_preview_getControlHTML(control_name) { switch (control_name) { case "preview": return ''; } return ""; } /** * Executes the mcePreview command. */ function TinyMCE_preview_execCommand(editor_id, element, command, user_interface, value) { // Handle commands switch (command) { case "mcePreview": var previewPage = tinyMCE.getParam("plugin_preview_pageurl", null); var previewWidth = tinyMCE.getParam("plugin_preview_width", "550"); var previewHeight = tinyMCE.getParam("plugin_preview_height", "600"); // Use a custom preview page if (previewPage) { var template = new Array(); template['file'] = previewPage; template['width'] = previewWidth; template['height'] = previewHeight; tinyMCE.openWindow(template, {editor_id : editor_id, resizable : "yes", scrollbars : "yes", content : tinyMCE.getContent(), content_css : tinyMCE.getParam("content_css")}); } else { var win = window.open("", "mcePreview", "menubar=no,toolbar=no,scrollbars=yes,resizable=yes,left=20,top=20,width=" + previewWidth + ",height=" + previewHeight); var html = ""; html += ''; html += ''; html += ''; html += '' + tinyMCE.getLang('lang_preview_desc') + ''; html += ''; html += ''; html += ''; html += ''; html += tinyMCE.getContent(); html += ''; html += ''; win.document.write(html); win.document.close(); } return true; } // Pass to next handler in chain return false; }