Changeset 5297
- Timestamp:
- 03/26/10 11:06:32 (3 years ago)
- Location:
- CKEditor/trunk/_source
- Files:
-
- 3 edited
-
core/tools.js (modified) (2 diffs)
-
plugins/contextmenu/plugin.js (modified) (3 diffs)
-
plugins/listblock/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/core/tools.js
r5271 r5297 1 /*1 /* 2 2 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. 3 3 For licensing, see LICENSE.html or http://ckeditor.com/license … … 554 554 * <li> Chainable base class constructor </li> 555 555 * </ul> 556 * @param {Object} definit on The class definiton object.556 * @param {Object} definition The class definition object. 557 557 * @returns {Function} A class-like JavaScript function. 558 558 */ -
CKEditor/trunk/_source/plugins/contextmenu/plugin.js
r5283 r5297 1 /*1 /* 2 2 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. 3 3 For licensing, see LICENSE.html or http://ckeditor.com/license … … 37 37 this); 38 38 39 this.definit on =39 this.definition = 40 40 { 41 41 panel: … … 64 64 else 65 65 { 66 menu = this._.menu = new CKEDITOR.menu( editor, this.definit on );66 menu = this._.menu = new CKEDITOR.menu( editor, this.definition ); 67 67 menu.onClick = CKEDITOR.tools.bind( function( item ) 68 68 { -
CKEditor/trunk/_source/plugins/listblock/plugin.js
r5250 r5297 10 10 onLoad : function() 11 11 { 12 CKEDITOR.ui.panel.prototype.addListBlock = function( name, definit on )12 CKEDITOR.ui.panel.prototype.addListBlock = function( name, definition ) 13 13 { 14 return this.addBlock( name, new CKEDITOR.ui.listBlock( this.getHolderElement(), definit on ) );14 return this.addBlock( name, new CKEDITOR.ui.listBlock( this.getHolderElement(), definition ) ); 15 15 }; 16 16
Note: See TracChangeset
for help on using the changeset viewer.
