lib/cms/configuration.rb in browsercms-4.0.0.alpha vs lib/cms/configuration.rb in browsercms-4.0.0.beta
- old
+ new
@@ -8,12 +8,13 @@
attr_accessor :attachment_file_permission
# Determines which WYSIWYG editor is the 'default' for a BrowserCMS project
#
# bcms modules can changes this by overriding it in their configuration.
+ # @return [String] The single javascript file to include to load the proper WYSIWYG editor.
def content_editor
# CKEditor is the default.
- @wysiwig_editor ||= ['bcms/ckeditor_load', 'ckeditor-jquery']
+ @wysiwig_editor ||= 'ckeditor'
end
def content_editor=(editor)
@wysiwig_editor = editor
end