Opened 14 years ago
Closed 14 years ago
#7084 closed Bug (fixed)
SCAYT options menu is empty / incorrect work of "scayt_uiTabs" config param for multiple CKEditor instances
Reported by: | WebSpellChecker.net | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.5.3 |
Component: | UI : Spell Checker | Version: | 3.1 |
Keywords: | HasPatch, Review? | Cc: | tech@… |
Description
Bug 1. "SCAYT options menu is empty for multiple CKEditor instances"
Steps to reproduce:
- Open "replace by code" sample.
- Start SCAYT for both of editors.
- Open SCAYT options menu for bothe of editors.
Expected result:
Options, Languages, Dictionaries, About Us tabs have content for both editors.
Actual result:
Options, Languages, Dictionaries, About Us tabs have content for only one of the editors.
Bug 2. "Incorrect work of "scayt_uiTabs" config param for multiple CKEditor instances"
Steps to reproduce:
- Open code of "replace by code" sample.
- For first editor set
CKEDITOR.replace( 'editor1', { scayt_uiTabs: '1,0,1' });
For second editor set
CKEDITOR.replace( 'editor2', { scayt_uiTabs: '0,0,0' });
- Open page and start SCAYT for both editors
Expected result:
scayt_uiTabs param from second editor doesn't affect menu of first editor
Actual result:
All options in first editor are not active. When "About us" tab is opened and than "Cancel" is clicked, an error is shown: "document.forms.optionsbar is undefined
[Break On This Error] return document.forms.optionsbaroptions?;
options.js (line 27)"
Attachments (2)
Change History (6)
Changed 14 years ago by
Attachment: | 7084.patch added |
---|
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
Milestone: | → CKEditor 3.5.2 |
---|---|
Status: | new → confirmed |
Version: | 3.5 → 3.1 |
Changed 14 years ago by
Attachment: | 7084_2.patch added |
---|
Here is patch which fixes both issues.