Changes between Version 11 and Version 12 of Ticket #10085
- Timestamp:
- Mar 1, 2013, 12:38:11 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10085 – Description
v11 v12 7 7 ---- 8 8 **Edit:**[[BR]] 9 Open attached ckeditor-bug package and test 4.0.1 sample page. It turns out that when divarea is used baseHref doesn't work. 9 Open attached ckeditor-bug package and test 4.0.1 sample page. It turns out that when divarea is used baseHref doesn't work.[[BR]] 10 Remove the plugin and it works again: 11 {{{ 12 $(document).ready(function() { 13 $('#make-editor').click(function(){ 14 CKEDITOR.replace('testeditor', { 15 removePlugins : 'divarea' 16 }); 17 }); 18 }); 19 }}}