trusty-cms 1.1.16 → 1.1.17
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 +1 -0
- data/config/initializers/ckeditor.rb +1 -1
- data/lib/trusty_cms.rb +1 -1
- metadata +1 -1
data/Gemfile.lock
CHANGED
@@ -4,6 +4,7 @@ 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/';
|
7
8
|
// if you want to remove clipboard, you have to remove all of these:
|
8
9
|
// clipboard, pastetext, pastefromword
|
9
10
|
config.removePlugins = "save, newpage, preview, print, templates, forms, flash, smiley, language, pagebreak, iframe, bidi";
|
data/lib/trusty_cms.rb
CHANGED