remove comment
This commit is contained in:
parent
13605eb315
commit
a07a0fe346
|
@ -46,7 +46,6 @@ class dbList extends dbJSON
|
||||||
|
|
||||||
// Returns all the items from the list
|
// Returns all the items from the list
|
||||||
if ($numberOfItems==-1) {
|
if ($numberOfItems==-1) {
|
||||||
// Invert keys to values, is necesary returns as key the key pages
|
|
||||||
return $list;
|
return $list;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.editor-toolbar { background: #f1f1f1; border-radius: 0 !important; }
|
.editor-toolbar { background: #f1f1f1; border-radius: 0 !important; }
|
||||||
.editor-toolbar::before { margin-bottom: 2px !important }
|
.editor-toolbar::before { margin-bottom: 2px !important }
|
||||||
.editor-toolbar::after { margin-top: 2px !important }
|
.editor-toolbar::after { margin-top: 2px !important }
|
||||||
.CodeMirror, .CodeMirror-scroll { min-height: 450px !important; border-radius: 0 !important; }
|
.CodeMirror, .CodeMirror-scroll { flex:1; border-radius: 0 !important; }
|
||||||
|
|
|
@ -76,14 +76,14 @@ class pluginsimpleMDE extends Plugin {
|
||||||
simplemde.codemirror.refresh();
|
simplemde.codemirror.refresh();
|
||||||
}'.PHP_EOL;
|
}'.PHP_EOL;
|
||||||
|
|
||||||
// Function required for Autosave function
|
|
||||||
// Returns the content of the editor
|
// Returns the content of the editor
|
||||||
|
// Function required for Bludit
|
||||||
$html .= 'function editorGetContent(content) {
|
$html .= 'function editorGetContent(content) {
|
||||||
return simplemde.value();
|
return simplemde.value();
|
||||||
}'.PHP_EOL;
|
}'.PHP_EOL;
|
||||||
|
|
||||||
// Function required for Media Manager
|
// Insert an image in the editor in the cursor position
|
||||||
// Insert an image on the editor in the cursor position
|
// Function required for Bludit
|
||||||
$html .= 'function editorInsertMedia(filename) {
|
$html .= 'function editorInsertMedia(filename) {
|
||||||
addContentSimpleMDE("!['.$L->get('Image description').']("+filename+")");
|
addContentSimpleMDE("!['.$L->get('Image description').']("+filename+")");
|
||||||
}'.PHP_EOL;
|
}'.PHP_EOL;
|
||||||
|
|
|
@ -52,14 +52,13 @@ class pluginTinymce extends Plugin {
|
||||||
|
|
||||||
public function adminBodyEnd()
|
public function adminBodyEnd()
|
||||||
{
|
{
|
||||||
|
global $L;
|
||||||
|
|
||||||
// Load the plugin only in the controllers setted in $this->loadOnController
|
// Load the plugin only in the controllers setted in $this->loadOnController
|
||||||
if (!in_array($GLOBALS['ADMIN_CONTROLLER'], $this->loadOnController)) {
|
if (!in_array($GLOBALS['ADMIN_CONTROLLER'], $this->loadOnController)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load object $language
|
|
||||||
global $L;
|
|
||||||
|
|
||||||
$toolbar1 = $this->getValue('toolbar1');
|
$toolbar1 = $this->getValue('toolbar1');
|
||||||
$toolbar2 = $this->getValue('toolbar2');
|
$toolbar2 = $this->getValue('toolbar2');
|
||||||
$content_css = $this->htmlPath().'css/tinymce.css';
|
$content_css = $this->htmlPath().'css/tinymce.css';
|
||||||
|
|
Loading…
Reference in New Issue