Quill plugin fix.
Just making it work. It seems to be working fine on my end, but user-defined toolbar options are not implemented yet. The plugin now loads all toolbar options by default. See: var toolbarOptions
This commit is contained in:
parent
aebaed2a8c
commit
84aa89a861
|
@ -56,7 +56,7 @@ class pluginQuill extends Plugin {
|
||||||
$html .= '<input name="autosave" id="jsautosave" type="checkbox" value="1" '.($this->getDbField('autosave')?'checked':'').'>';
|
$html .= '<input name="autosave" id="jsautosave" type="checkbox" value="1" '.($this->getDbField('autosave')?'checked':'').'>';
|
||||||
$html .= '<label class="forCheckbox" for="jsautosave">'.$Language->get('Autosave').'</label>';
|
$html .= '<label class="forCheckbox" for="jsautosave">'.$Language->get('Autosave').'</label>';
|
||||||
$html .= '</div>';
|
$html .= '</div>';
|
||||||
|
|
||||||
$html .= '<div>';
|
$html .= '<div>';
|
||||||
$html .= '<input type="hidden" name="spellChecker" value="0">';
|
$html .= '<input type="hidden" name="spellChecker" value="0">';
|
||||||
$html .= '<input name="spellChecker" id="jsspellChecker" type="checkbox" value="1" '.($this->getDbField('spellChecker')?'checked':'').'>';
|
$html .= '<input name="spellChecker" id="jsspellChecker" type="checkbox" value="1" '.($this->getDbField('spellChecker')?'checked':'').'>';
|
||||||
|
@ -72,25 +72,43 @@ class pluginQuill extends Plugin {
|
||||||
global $Language;
|
global $Language;
|
||||||
|
|
||||||
$html = '';
|
$html = '';
|
||||||
if( $this->enabled() ) {
|
// Load CSS and JS only on Controllers in array.
|
||||||
|
if(in_array($layout['controller'], $this->loadWhenController))
|
||||||
|
{
|
||||||
$html .= '
|
$html .= '
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
var quill = new Quill("#editor-container", {
|
var toolbarOptions = [
|
||||||
modules: {
|
["bold", "italic", "underline", "strike"], // toggled buttons
|
||||||
toolbar: [
|
["blockquote", "code-block"],
|
||||||
[{ header: [1, 2, false] }],
|
|
||||||
["bold", "italic", "underline"],
|
[{ "header": 1 }, { "header": 2 }], // custom button values
|
||||||
["image"]
|
[{ "list": "ordered"}, { "list": "bullet" }],
|
||||||
]
|
[{ "script": "sub"}, { "script": "super" }], // superscript/subscript
|
||||||
},
|
[{ "indent": "-1"}, { "indent": "+1" }], // outdent/indent
|
||||||
placeholder: "asd",
|
[{ "direction": "rtl" }], // text direction
|
||||||
theme: "snow"
|
|
||||||
});
|
[{ "size": ["small", false, "large", "huge"] }], // custom dropdown
|
||||||
|
[{ "header": [1, 2, 3, 4, 5, 6, false] }],
|
||||||
|
|
||||||
|
[{ "color": [] }, { "background": [] }], // dropdown with defaults from theme
|
||||||
|
[{ "font": [] }],
|
||||||
|
[{ "align": [] }],
|
||||||
|
|
||||||
|
["clean"] // remove formatting button
|
||||||
|
];
|
||||||
|
|
||||||
|
var quill = new Quill("#jscontent", {
|
||||||
|
modules: {
|
||||||
|
toolbar: toolbarOptions
|
||||||
|
},
|
||||||
|
placeholder: "Compose an epic...",
|
||||||
|
theme: "snow"
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
';
|
';
|
||||||
}
|
}
|
||||||
|
|
||||||
return $html;
|
return $html;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue