#336 closed Bug (fixed)
Numbered List @type in dialog is NOT correct.
Reported by: | tba21cn | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | FCKeditor 2.4.3 |
Component: | General | Version: | FCKeditor 2.4.1 |
Keywords: | Cc: |
Description (last modified by )
Test step:
- create a numbered list
- set type="A" or "I"
- right click the list and select "Numbered List properties", the type in the type selection is "a" or "i".
Reason:
editor/dialog/fck_listprop.html
oActiveSel.value = oActiveEl.getAttribute('type').toLowerCase() ;
should be:
oActiveSel.value = oActiveEl.getAttribute('type') ;
I do not know why it change to lower case.
Change History (3)
comment:1 Changed 18 years ago by
Description: | modified (diff) |
---|---|
Resolution: | → fixed |
Status: | new → closed |
comment:2 Changed 18 years ago by
Milestone: | → FCKeditor 2.4.2 |
---|
comment:3 Changed 18 years ago by
Milestone: | FCKeditor 2.4.2 → FCKeditor 2.4.3 |
---|
Fixed in [236], I did check it in both IE6 and Firefox 2.0.0.3 and I didn't notice any drawback in the proposed fix.
Thanks.