From a38754193dfc6c2e391821f5883256a6f202c0ab Mon Sep 17 00:00:00 2001 From: Mateusz Marzantowicz Date: Sun, 15 Jun 2014 16:58:55 +0200 Subject: [PATCH] fix URLs to reflect new static file location --- .../static/djangocms_text_ckeditor/js/cms.ckeditor.js | 4 ++-- .../templates/cms/plugins/widgets/ckeditor.html | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/djangocms_text_ckeditor/static/djangocms_text_ckeditor/js/cms.ckeditor.js b/djangocms_text_ckeditor/static/djangocms_text_ckeditor/js/cms.ckeditor.js index a26833c..59cf9ce 100644 --- a/djangocms_text_ckeditor/static/djangocms_text_ckeditor/js/cms.ckeditor.js +++ b/djangocms_text_ckeditor/static/djangocms_text_ckeditor/js/cms.ckeditor.js @@ -57,7 +57,7 @@ $(document).ready(function () { }, this.options, options); // add additional plugins (autoloads plugins.js) - CKEDITOR.plugins.addExternal('cmsplugins', settings.static_url + 'ckeditor_plugins/cmsplugins/'); + CKEDITOR.plugins.addExternal('cmsplugins', settings.static_url + 'djangocms_text_ckeditor/ckeditor_plugins/cmsplugins/'); // render ckeditor this.editor = CKEDITOR.replace(container, this.options); @@ -93,4 +93,4 @@ $(document).ready(function () { }; }); -})(CMS.$); \ No newline at end of file +})(CMS.$); diff --git a/djangocms_text_ckeditor/templates/cms/plugins/widgets/ckeditor.html b/djangocms_text_ckeditor/templates/cms/plugins/widgets/ckeditor.html index 5385d8c..9d601d8 100644 --- a/djangocms_text_ckeditor/templates/cms/plugins/widgets/ckeditor.html +++ b/djangocms_text_ckeditor/templates/cms/plugins/widgets/ckeditor.html @@ -1,13 +1,13 @@ {% load i18n l10n admin_static %} {% block extrastyle %} - + {% endblock %} {% block extrahead %} - - - + + + {% endblock %}