Ticket #10603: ckeditor.patch

File ckeditor.patch, 834 bytes (added by Tim Dionne, 11 years ago)

Patch file

  • _source/plugins/dialog/plugin.js

     
    227227                {
    228228                        var removeContents = editor.config.removeDialogTabs.split( ';' );
    229229
    230                         for ( i = 0; i < removeContents.length; i++ )
     230                        for ( var i = 0; i < removeContents.length; i++ )
    231231                        {
    232232                                var parts = removeContents[ i ].split( ':' );
    233233                                if ( parts.length == 2 )
     
    244244                // Remove tabs of this dialog.
    245245                if ( editor._.removeDialogTabs && ( tabsToRemove = editor._.removeDialogTabs[ dialogName ] ) )
    246246                {
    247                         for ( i = 0; i < tabsToRemove.length; i++ )
     247                        for ( var i = 0; i < tabsToRemove.length; i++ )
    248248                                definition.removeContents( tabsToRemove[ i ] );
    249249                }
    250250
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy