Changes between Initial Version and Version 1 of Ticket #6215
- Timestamp:
- Sep 10, 2010, 1:18:19 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6215
-
Property
Status
changed from
new
toreview
- Property Owner set to Krzysztof Studnik
- Property Keywords HasPatch added
-
Property
Status
changed from
-
Ticket #6215 – Description
initial v1 1 if user copy content from web somewhere to ckeditor ,the html code is 2 "<span style="font-weight: bold;">bold</span>",the editor's bold button (alway off state) is unusable for copied content. 1 if user copy content from web somewhere to ckeditor ,the html code is 2 {{{ 3 <span style="font-weight: bold;">bold</span> 4 }}} 5 the editor's bold button (alway off state) is unusable for copied content. 3 6 4 and if i change coreStyles_bold to5 7 and if i change coreStyles_bold in ''_source\plugins\basicstyles\plugin.js line 54'' 8 to 6 9 {{{ 7 10 { element : 'span', … … 13 16 }}} 14 17 15 when user copy "<b>bold</b>" to sourcearea ,and place cursor in the middle of bold (do not select a character) at wysiwyg mode ,the bold button's state is on,but if clicked ,nothing happened 18 when user copy 19 {{{ 20 <b>bold</b> 21 }}} 22 to sourcearea ,and place cursor in the middle of bold (do not select a character) at wysiwyg mode ,the bold button's state is on,but if clicked ,nothing happened 16 23 17 24 i modified code file (ckeditor 3.4) : _source/plugins/styles/plugin.js line 603