Opened 13 years ago
Closed 13 years ago
#9240 closed Bug (fixed)
Arrows not rendering correctly on menus in high contrast mode
Reported by: | Teresa Monahan | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 4.0 |
Component: | General | Version: | 4.0 |
Keywords: | IBM | Cc: | Damian, Satya Minnekanti |
Description ¶
To reproduce:
- Switch to high contrast mode.
- Open any CKEditor sample and insert a table.
- Right click to view the context menu.
Problem: The right arrow for sub menus is not displaying properly. Instead the unicode value is displayed.
This is due to a missing # in the unicode value.
Line 407 in menu/plugin.js is currently:
var arrowLabel = '&' + ( this.editor.lang.dir == 'rtl' ? '9668' : '9658' ) + ';';
It should be:
var arrowLabel = '&#' + ( this.editor.lang.dir == 'rtl' ? '9668' : '9658' ) + ';';

Change History (1)
comment:1 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |

Thanks for the fix, tmonahan. Fixed with a1d5c4e.