| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 /* 2 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. 3 For licensing, see LICENSE.html or http://ckeditor.com/license 4 */ 5 6 /** 7 * @file Special Character plugin 8 */ 9 10 CKEDITOR.plugins.add( 'specialchar', 11 { 12 init : function( editor ) 13 { 14 var pluginName = 'specialchar'; 15 16 // Register the dialog. 17 CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/specialchar.js' ); 18 19 // Register the command. 20 editor.addCommand( pluginName, new CKEDITOR.dialogCommand( pluginName ) ); 21 22 // Register the toolbar button. 23 editor.ui.addButton( 'SpecialChar', 24 { 25 label : editor.lang.specialChar.toolbar, 26 command : pluginName 27 }); 28 } 29 } );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |