Changes between Initial Version and Version 1 of Ticket #12586
- Timestamp:
- Oct 23, 2014, 8:25:08 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12586
-
Property
Status
changed from
new
toconfirmed
-
Property
Status
changed from
-
Ticket #12586 – Description
initial v1 9 9 AddExternal takes ckeditor-4.4.5 as the filename instead of using the already full path provided. 10 10 Changing the call in styles.js from: 11 12 {{{ 11 13 CKEDITOR.stylesSet.addExternal(styleSetName, externalPath ? partsStylesSet.slice(1).join(':') : CKEDITOR.getUrl('styles.js'), ''); 14 }}} 15 12 16 to 17 18 {{{ 13 19 CKEDITOR.stylesSet.addExternal(styleSetName, externalPath ? partsStylesSet.slice(1).join(':') : CKEDITOR.getUrl('styles.js'), ' '); 20 }}} 21 14 22 with one space provided as the filename fixed the problem for me. 15 23 16 The test should be something like if(fileName ===undefined || fileName === null),but I am not a javascript developer.24 The test should be something like `if(fileName ===undefined || fileName === null),` but I am not a javascript developer.