| Server IP : 195.130.67.5 / Your IP : 216.73.217.127 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/control/ckeditor/_source/plugins/uicolor/ |
Upload File : |
/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'uicolor',
{
requires : [ 'dialog' ],
lang : [ 'en', 'he' ],
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'
));
}
} );