mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
fa76e64d48
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@72452 467b73ca-7a2a-4603-9d3b-597d59a354a9
62 lines
2.3 KiB
JavaScript
Executable File
62 lines
2.3 KiB
JavaScript
Executable File
function nullConverter(url) {
|
|
return url;
|
|
}
|
|
|
|
/**
|
|
* TinyMCE initialisation template.
|
|
* $ variables are replaced by string search & replace. It's pretty crude.
|
|
*/
|
|
// Prevents "Error: 'tinyMCE' is undefined" error in IE7 on Newsletter Recipient import.
|
|
if((typeof tinyMCE != 'undefined')) {
|
|
tinyMCE.init({
|
|
mode : "none",
|
|
language: "$Lang",
|
|
width: "100%",
|
|
auto_resize : false,
|
|
theme : "advanced",
|
|
content_css : "cms/css/editor.css, $ContentCSS",
|
|
body_class : 'typography',
|
|
document_base_url: "$BaseURL",
|
|
urlconverter_callback : "nullConverter",
|
|
|
|
setupcontent_callback : "sapphiremce_setupcontent",
|
|
cleanup_callback : "sapphiremce_cleanup",
|
|
|
|
theme_advanced_layout_manager: "SimpleLayout",
|
|
theme_advanced_toolbar_location : "top",
|
|
theme_advanced_toolbar_align : "left",
|
|
theme_advanced_toolbar_parent : "right",
|
|
plugins : "media,contextmenu,table,emotions,paste,../../tinymce_ssbuttons,../../tinymce_advcode,spellchecker",
|
|
blockquote_clear_tag : "p",
|
|
table_inline_editing : true,
|
|
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,separator,bullist,numlist,outdent,indent,blockquote,hr,charmap",
|
|
theme_advanced_buttons2 : "undo,redo,separator,cut,copy,paste,pastetext,pasteword,spellchecker,separator,ssimage,ssflash,sslink,unlink,anchor,separator,advcode,search,replace,selectall,visualaid,separator,tablecontrols",
|
|
theme_advanced_buttons3 : "",
|
|
spellchecker_languages : "$SpellcheckLangs",
|
|
|
|
template_templates : [
|
|
{ title : "Three column", src : "assets/snippet.html", description : "A simple 3 column layout"},
|
|
],
|
|
|
|
safari_warning : false,
|
|
relative_urls : true,
|
|
verify_html : true,
|
|
use_native_selects : true // fancy selects are bug as of SS 2.3.0
|
|
});
|
|
}
|
|
|
|
Behaviour.register({
|
|
'textarea.htmleditor' : {
|
|
initialize : function() {
|
|
tinyMCE.execCommand("mceAddControl", true, this.id);
|
|
this.isChanged = function() {
|
|
return tinyMCE.getInstanceById(this.id).isDirty();
|
|
}
|
|
this.resetChanged = function() {
|
|
inst = tinyMCE.getInstanceById(this.id);
|
|
inst.startContent = tinymce.trim(inst.getContent({format : 'raw', no_events : 1}));
|
|
}
|
|
}
|
|
}
|
|
})
|