minor anti-xss changes...

This commit is contained in:
Caleb James DeLisle
2017-08-24 13:53:42 +02:00
parent 75fde58846
commit 7bbea28831
6 changed files with 765 additions and 17 deletions

View File

@@ -61,7 +61,6 @@ CKEDITOR.editorConfig = function( config ) {
// every part of ckeditor will get in the browser cache.
var fix = function (x) {
if (x.map) { return x.map(fix); }
console.log('> ' + x);
return (/\/bower_components\/.*\.css$/.test(x)) ? (x + '?ver=' + CKEDITOR.timestamp) : x;
};
CKEDITOR.tools._buildStyleHtml = CKEDITOR.tools.buildStyleHtml;