X-Git-Url: https://scm.cri.ensmp.fr/git/ckeditor.git/blobdiff_plain/871bad8291b6dbc29d489d95d185458caab25158..14d450d78a2d67ec1decd64c928151851961dd36:/_source/plugins/uicolor/plugin.js diff --git a/_source/plugins/uicolor/plugin.js b/_source/plugins/uicolor/plugin.js deleted file mode 100644 index f971fbc..0000000 --- a/_source/plugins/uicolor/plugin.js +++ /dev/null @@ -1,37 +0,0 @@ -/* -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' - )); - } -} );