Add files via upload

TinyMCE plugin edit. Added Print and Media embed. We can add video iframes with an editor now. Just add iframe source to embed field.
This commit is contained in:
Andrius Pratusis 2018-02-25 10:43:47 +02:00 committed by GitHub
parent deb04f0c9e
commit fc3c4e5bc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,6 @@ class pluginTinymce extends Plugin {
schema: "html5",
statusbar: false,
menubar:false,
remove_script_host: false,
branding: false,
browser_spellcheck: true,
pagebreak_separator: "'.PAGE_BREAK.'",
@ -50,9 +49,10 @@ class pluginTinymce extends Plugin {
"fullscreen image link media template",
"codesample table hr pagebreak",
"advlist lists textcolor wordcount",
"contextmenu colorpicker textpattern"
"contextmenu colorpicker textpattern",
"emoticons", "print"
],
toolbar: "restoredraft | formatselect | bold italic strikethrough forecolor backcolor | link | alignleft aligncenter alignright alignjustify | numlist bullist outdent indent | removeformat image table | pagebreak code fullscreen"
toolbar: "restoredraft | formatselect | bold italic strikethrough forecolor backcolor | link | emoticons | print |alignleft aligncenter alignright alignjustify | numlist bullist outdent indent | removeformat media table | pagebreak code fullscreen"
});
</script>';