Changes between Initial Version and Version 2 of Ticket #11353
- Timestamp:
- Jan 2, 2014, 8:18:30 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11353 – Description
initial v2 1 1 This only happens with IE8 2 2 3 {{{ 3 4 SCRIPT5007: Unable to get property 'items' of undefined or null reference 4 5 File: ckeditor.js, Line: 668, Column: 449 5 6 }}} 6 7 7 8 problem is that b.length is 11, while it should be 9 8 9 so in the loop at index 10 d is undefined, thus d.items is also undefined. 9 10 11 {{{ 10 12 function h(b) { 11 13 var a = [], e, d, h; … … 16 18 return a; 17 19 } 18 20 }}} 19 21 20 22 21 23 I have the following setup in config.js: 22 24 25 {{{ 23 26 config.toolbar = [ 24 27 { name: 'paragraph', groups: ['list', 'indent', 'blocks', 'align', 'bidi'], items: ['NumberedList', 'BulletedList', '-', 'Table', 'HorizontalRule', 'SpecialChar', 'PageBreak', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyRight', 'JustifyCenter', 'JustifyLeft', 'JustifyBlock', '-', 'BidiRtl', 'BidiLtr'] }, … … 47 50 { name: 'tools' } 48 51 ]; 52 }}}