TinyMCE updates
This commit is contained in:
parent
ea1f91a02b
commit
e5d3e8e4c6
|
@ -12,7 +12,7 @@ class pluginTinymce extends Plugin {
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$this->dbFields = array(
|
$this->dbFields = array(
|
||||||
'plugins'=>'autoresize, fullscreen, pagebreak, link, textcolor, code, image',
|
'plugins'=>'autoresize, fullscreen, pagebreak, link, textcolor, code, image, paste',
|
||||||
'toolbar'=>'bold italic underline strikethrough | alignleft aligncenter alignright | bullist numlist | styleselect | link forecolor backcolor removeformat image | pagebreak code fullscreen'
|
'toolbar'=>'bold italic underline strikethrough | alignleft aligncenter alignright | bullist numlist | styleselect | link forecolor backcolor removeformat image | pagebreak code fullscreen'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -77,9 +77,14 @@ class pluginTinymce extends Plugin {
|
||||||
$html = '<script>$(document).ready(function() { ';
|
$html = '<script>$(document).ready(function() { ';
|
||||||
$html .= 'tinymce.init({
|
$html .= 'tinymce.init({
|
||||||
selector: "#jscontent",
|
selector: "#jscontent",
|
||||||
|
cache_suffix: "?v='.$this->version().'",
|
||||||
|
element_format : "html",
|
||||||
|
entity_encoding : "raw",
|
||||||
|
schema: "html5",
|
||||||
|
extended_valid_elements : "a[class|name|href|target|title|onclick|rel],script[type|src],iframe[src|style|width|height|scrolling|marginwidth|marginheight|frameborder],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name]",
|
||||||
plugins: "'.$this->getDbField('plugins').'",
|
plugins: "'.$this->getDbField('plugins').'",
|
||||||
toolbar: "'.$this->getDbField('toolbar').'",
|
toolbar: "'.$this->getDbField('toolbar').'",
|
||||||
content_css: "'.$pluginPath.'css/editor.css?version='.$this->version().'",
|
content_css: "'.$pluginPath.'css/editor.css",
|
||||||
theme: "modern",
|
theme: "modern",
|
||||||
height:"400px",
|
height:"400px",
|
||||||
width:"100%",
|
width:"100%",
|
||||||
|
|
Loading…
Reference in New Issue