From b8fbb073acc4ef81ac3e7737afe5b025bb8f220e Mon Sep 17 00:00:00 2001 From: Sam Georges Date: Sun, 14 Sep 2014 10:57:17 +1000 Subject: [PATCH] Minor --- modules/backend/formwidgets/RichEditor.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/modules/backend/formwidgets/RichEditor.php b/modules/backend/formwidgets/RichEditor.php index a590ab482..154838774 100644 --- a/modules/backend/formwidgets/RichEditor.php +++ b/modules/backend/formwidgets/RichEditor.php @@ -49,10 +49,16 @@ class RichEditor extends FormWidgetBase */ public function loadAssets() { - $this->addCss('vendor/redactor/redactor.css', 'core'); - $this->addCss('css/richeditor.css', 'core'); - $this->addJs('vendor/redactor/redactor.js', 'core'); - $this->addJs('js/richeditor.js', 'core'); - } + // Plugins + // $this->addJs('js/plugin.fullscreen.js', 'core'); + // Redactor + $this->addCss('vendor/redactor/redactor.css', 'core'); + $this->addJs('vendor/redactor/redactor.js', 'core'); + + // Rich editor + $this->addCss('css/richeditor.css', 'core'); + $this->addJs('js/richeditor.js', 'core'); + + } } \ No newline at end of file