trusty-cms 1.1.19 → 1.1.20
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/app/assets/javascripts/ckeditor/config.js +0 -1
- data/lib/trusty_cms.rb +1 -1
- data/lib/trusty_cms/engine.rb +1 -1
- metadata +1 -1
data/Gemfile.lock
CHANGED
@@ -4,7 +4,6 @@ CKEDITOR.editorConfig = function( config ) {
|
|
4
4
|
config.protectedSource.push(/<r:([\S]+)*>.*<\/r:\1>/g);
|
5
5
|
config.protectedSource.push(/<r:[^>\/]*\/>/g);
|
6
6
|
config.forcePasteAsPlainText = true;
|
7
|
-
config.path = '/assets/';
|
8
7
|
// if you want to remove clipboard, you have to remove all of these:
|
9
8
|
// clipboard, pastetext, pastefromword
|
10
9
|
config.removePlugins = "save, newpage, preview, print, templates, forms, flash, smiley, language, pagebreak, iframe, bidi";
|
data/lib/trusty_cms.rb
CHANGED
data/lib/trusty_cms/engine.rb
CHANGED
@@ -2,7 +2,7 @@ module TrustyCms
|
|
2
2
|
class Engine < Rails::Engine
|
3
3
|
paths["app/helpers"] = []
|
4
4
|
initializer "trusty_cms.assets.precompile" do |app|
|
5
|
-
app.config.assets.precompile += %w(admin/main.css admin.js ckeditor/contents.css ckeditor/config.js ckeditor/skins/moono/editor.css ckeditor/lang/en.js)
|
5
|
+
app.config.assets.precompile += %w(admin/main.css admin.js ckeditor/config.js ckeditor/contents.css ckeditor/config.js ckeditor/skins/moono/editor.css ckeditor/lang/en.js)
|
6
6
|
end
|
7
7
|
end
|
8
8
|
end
|