Changes between Initial Version and Version 2 of Ticket #11353


Ignore:
Timestamp:
Jan 2, 2014, 8:18:30 AM (10 years ago)
Author:
Piotrek Koszuliński
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11353 – Description

    initial v2  
    11This only happens with IE8
    22
     3{{{
    34SCRIPT5007: Unable to get property 'items' of undefined or null reference
    45   File: ckeditor.js, Line: 668, Column: 449
    5 
     6}}}
    67
    78problem is that b.length is 11, while it should be 9
    89so in the loop at index 10 d is undefined, thus d.items is also undefined.
    910
     11{{{
    1012function h(b) {
    1113                var a = [], e, d, h;
     
    1618                return a;
    1719            }
    18 
     20}}}
    1921
    2022
    2123I have the following setup in config.js:
    2224
     25{{{
    2326    config.toolbar = [
    2427        { 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'] },
     
    4750        { name: 'tools' }
    4851    ];
     52}}}
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy