Changeset 6767
- Timestamp:
- 04/26/11 01:23:12 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/_source/plugins/colordialog/plugin.js
r5206 r6767 1 ( function() 1 /* 2 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 For licensing, see LICENSE.html or http://ckeditor.com/license 4 */ 5 6 CKEDITOR.plugins.colordialog = 2 7 { 3 CKEDITOR.plugins.colordialog =8 init : function( editor ) 4 9 { 5 init : function( editor ) 6 { 7 editor.addCommand( 'colordialog', new CKEDITOR.dialogCommand( 'colordialog' ) ); 8 CKEDITOR.dialog.add( 'colordialog', this.path + 'dialogs/colordialog.js' ); 9 } 10 }; 10 editor.addCommand( 'colordialog', new CKEDITOR.dialogCommand( 'colordialog' ) ); 11 CKEDITOR.dialog.add( 'colordialog', this.path + 'dialogs/colordialog.js' ); 12 } 13 }; 11 14 12 CKEDITOR.plugins.add( 'colordialog', CKEDITOR.plugins.colordialog ); 13 } )(); 15 CKEDITOR.plugins.add( 'colordialog', CKEDITOR.plugins.colordialog );
Note: See TracChangeset
for help on using the changeset viewer.
