Changes between Initial Version and Version 1 of Ticket #13081
- Timestamp:
- Mar 23, 2015, 3:45:19 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13081 – Description
initial v1 11 11 The reason why this happens is that initially snapshot contains widget classes in the following order: 12 12 13 ``` 13 {{{ 14 14 cke_widget_focused cke_widget_selected 15 ``` 15 }}} 16 16 17 Unfortunately, once editor is blurred, the cke_widget_focusedclass is removed and when it's added back (on editor focus, on doubleclick) it's added at the end.17 Unfortunately, once editor is blurred, the `cke_widget_focused` class is removed and when it's added back (on editor focus, on doubleclick) it's added at the end. 18 18 19 The solution would be to always add cke_widget_focused class after cke_widget_selected. 19 The solution would be to always add `cke_widget_focused` class after `cke_widget_selected`. 20 21 Reproduced on Chrome.