JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
4dbf3b000c5f01713b90222cbeb4ab94caa30cb4
[ckeditor.git] / _source / plugins / colordialog / plugin.js
1 /*\r
2 Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license\r
4 */\r
5 \r
6 CKEDITOR.plugins.colordialog =\r
7 {\r
8         requires : [ 'dialog' ],\r
9         init : function( editor )\r
10         {\r
11                 editor.addCommand( 'colordialog', new CKEDITOR.dialogCommand( 'colordialog' ) );\r
12                 CKEDITOR.dialog.add( 'colordialog', this.path + 'dialogs/colordialog.js' );\r
13         }\r
14 };\r
15 \r
16 CKEDITOR.plugins.add( 'colordialog', CKEDITOR.plugins.colordialog );\r