Update UUID and fixed #432
This commit is contained in:
parent
7f9094b25b
commit
40147ec634
@ -253,5 +253,6 @@
|
|||||||
"save-as-draft": "Save as draft",
|
"save-as-draft": "Save as draft",
|
||||||
"slug": "slug",
|
"slug": "slug",
|
||||||
"this-plugin-may-not-be-supported-by-this-version-of-bludit": "This plugin may not be supported by this version of Bludit",
|
"this-plugin-may-not-be-supported-by-this-version-of-bludit": "This plugin may not be supported by this version of Bludit",
|
||||||
"this-theme-may-not-be-supported-by-this-version-of-bludit": "This theme may not be supported by this version of Bludit"
|
"this-theme-may-not-be-supported-by-this-version-of-bludit": "This theme may not be supported by this version of Bludit",
|
||||||
|
"content-here-supports-markdown-and-html-code": "Content here. Supports Markdown and HTML code."
|
||||||
}
|
}
|
@ -38,7 +38,7 @@ class pluginsimpleMDE 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':'').'>';
|
||||||
@ -105,7 +105,7 @@ class pluginsimpleMDE extends Plugin {
|
|||||||
|
|
||||||
// Spell Checker
|
// Spell Checker
|
||||||
$spellCheckerEnable = $this->getDbField('spellChecker')?'true':'false';
|
$spellCheckerEnable = $this->getDbField('spellChecker')?'true':'false';
|
||||||
|
|
||||||
$pluginPath = $this->htmlPath();
|
$pluginPath = $this->htmlPath();
|
||||||
|
|
||||||
$html = '<script>'.PHP_EOL;
|
$html = '<script>'.PHP_EOL;
|
||||||
@ -129,7 +129,7 @@ class pluginsimpleMDE extends Plugin {
|
|||||||
toolbarTips: true,
|
toolbarTips: true,
|
||||||
toolbarGuideIcon: true,
|
toolbarGuideIcon: true,
|
||||||
autofocus: false,
|
autofocus: false,
|
||||||
placeholder: "Content here... Supports Markdown and HTML code.",
|
placeholder: "'.$Language->get('Content here Supports Markdown and HTML code').'",
|
||||||
lineWrapping: true,
|
lineWrapping: true,
|
||||||
autoDownloadFontAwesome: false,
|
autoDownloadFontAwesome: false,
|
||||||
indentWithTabs: true,
|
indentWithTabs: true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user