This repository has been archived on 2022-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
md-cms/edit/js/runTinyMCE.js
2018-06-23 00:42:39 +02:00

23 lines
813 B
JavaScript

let lang = document.getElementsByTagName("html")[0].getAttribute("lang");
if (lang == "de") lang = "de";
else lang = "en_US";
let tinyMCEparams = {
mode : "specific_textareas",
editor_selector : "mceEditor",
plugins: [
'advlist autolink lists link image charmap print preview anchor textcolor',
'searchreplace visualblocks code fullscreen',
'insertdatetime media table contextmenu paste code help wordcount'
],
toolbar: 'insert | undo redo | formatselect | bold italic backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | removeformat | help',
content_css: [
"./themes/imports.css",
"./themes/default/default.css"
]
};
if (lang == "de") tinyMCEparams["language"] = "de";
tinymce.init(tinyMCEparams);