javascript - CKEditor Icon Paths not URLEncoded -
i using ckeditor 4 desktop application , issue icons toolbar not display. reason when toolbar elements generated finds path folder icons , puts style tag set background on each button. 1 of folders in path contains parentheses, results in invalid css (ex: background-image: url(file///c:/programfiles(x86).../icons/;
). question is, know html being generated can url encode , avoid problem?
skin.js file needs edited. line 18 path icons generated, , @ point can add .replace("(","%28").replace(")","%29");
end of line , escape parentheses.
Comments
Post a Comment