Changeset 663

Show
Ignore:
Timestamp:
2007-08-15 18:25:03 (17 months ago)
Author:
aleksey
Message:

Fixed the bug where invalid value for ToolbarLocation breaks editor initialization process.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/_source/internals/fcktoolbarset.js

    r491 r663  
    6161                        { 
    6262                                alert( 'Invalid value for "ToolbarLocation"' ) ; 
    63                                 return this._Init( 'In' ) ; 
     63                                return arguments.callee( 'In' ); 
    6464                        } 
    6565 
     
    225225        this.Items = new Array() ; 
    226226 
    227         // Reset the array of toolbat items that are active only on WYSIWYG mode. 
     227        // Reset the array of toolbar items that are active only on WYSIWYG mode. 
    228228        this.ItemsWysiwygOnly = new Array() ; 
    229229