Ticket #4546 (closed Bug: fixed)
uiColor creates wrong css-code when editor-id contains colons
| Reported by: | muhviehstarr | Owned by: | garry.yao |
|---|---|---|---|
| Priority: | Normal | Milestone: | CKEditor 3.1 |
| Component: | General | Version: | SVN (CKEditor) - OLD |
| Keywords: | Confirmed Review+ | Cc: |
Description
if you replace your textarea with an editor using uiColor and the textarea id contains an colon (famous in jsf-applications), the generated css-code doesn't work.
Patch for setUiColor:
replace
s='#cke_'+m.replace('.','
.')
with
s='#cke_'+m.name.replace(/:/g, '
:').replace('.','
.')
Attachments
Change History
Note: See
TracTickets for help on using
tickets.
