Changes between Initial Version and Version 1 of Ticket #11532
- Timestamp:
- Feb 4, 2014, 3:02:20 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11532
-
Property
Status
changed from
new
toconfirmed
-
Property
Milestone
changed from
to
CKEditor 4.4
-
Property
Status
changed from
-
Ticket #11532 – Description
initial v1 1 We should create more convenient way to add custom css files. Now we accept as editor.config.contentsCssstring or array of strings which is ok, but if we want to attach to it extra css styles in plugins, we have to do some extra checking. Such code is redundant.1 We should create more convenient way to add custom css files. Now we accept as `editor.config.contentsCss` string or array of strings which is ok, but if we want to attach to it extra css styles in plugins, we have to do some extra checking. Such code is redundant. 2 2 3 Method should be editor member, so we will end up with `editor.addContentsCss()`. Method itself should be injected from `wysiwygarea` plugin, since contentsCssworks only for classic editor.3 Method should be editor member, so we will end up with `editor.addContentsCss()`. Method itself should be injected from `wysiwygarea` plugin, since `contentsCss` works only for classic editor. 4 4 5 Method should a llow to accept as its parameter both string and array of stylesheet paths.5 Method should accept as its parameter a string.