|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/afglcweb/ny/sites/all/modules/ckeditor/ckeditor/_source/plugins/uicolor/ |
Upload File : |
/*
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'uicolor',
{
requires : [ 'dialog' ],
lang : [ 'en' ],
init : function( editor )
{
if ( CKEDITOR.env.ie6Compat )
return;
editor.addCommand( 'uicolor', new CKEDITOR.dialogCommand( 'uicolor' ) );
editor.ui.addButton( 'UIColor',
{
label : editor.lang.uicolor.title,
command : 'uicolor',
icon : this.path + 'uicolor.gif'
});
CKEDITOR.dialog.add( 'uicolor', this.path + 'dialogs/uicolor.js' );
// Load YUI js files.
CKEDITOR.scriptLoader.load( CKEDITOR.getUrl(
'_source/' + // @Packager.RemoveLine
'plugins/uicolor/yui/yui.js'
));
// Load YUI css files.
editor.element.getDocument().appendStyleSheet( CKEDITOR.getUrl(
'_source/' + // @Packager.RemoveLine
'plugins/uicolor/yui/assets/yui.css'
));
}
} );