Sha256: c5e168d32b7086a9cbca51ff2d989c5f470f4c12c0324c7851efac9dae53e6ea
Contents?: true
Size: 694 Bytes
Versions: 22
Compression:
Stored size: 694 Bytes
Contents
/* Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ /** * @file Special Character plugin */ CKEDITOR.plugins.add( 'specialchar', { init : function( editor ) { var pluginName = 'specialchar'; // Register the dialog. CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/specialchar.js' ); // Register the command. editor.addCommand( pluginName, new CKEDITOR.dialogCommand( pluginName ) ); // Register the toolbar button. editor.ui.addButton( 'SpecialChar', { label : editor.lang.specialChar.toolbar, command : pluginName }); } } );
Version data entries
22 entries across 22 versions & 6 rubygems