Ticket #6647: 6647.patch
File 6647.patch, 1.1 KB (added by , 12 years ago) |
---|
-
_source/plugins/floatpanel/plugin.js
213 213 width += ( target.$.offsetWidth || 0 ) - ( target.$.clientWidth || 0 ); 214 214 // A little extra at the end. 215 215 // If not present, IE6 might break into the next line, but also it looks better this way 216 width += 4;216 width += CKEDITOR.env.ie6Compat ? 11 : 4; 217 217 218 218 target.setStyle( 'width', width + 'px' ); 219 219 -
_source/plugins/menu/plugin.js
49 49 $ : function( editor, definition ) 50 50 { 51 51 definition = this._.definition = definition || {}; 52 this.id = 'cke_' + CKEDITOR.tools.getNextNumber();52 this.id = CKEDITOR.tools.getNextId(); 53 53 54 54 this.editor = editor; 55 55 this.items = [];