summaryrefslogtreecommitdiff
path: root/_source/plugins/about/plugin.js
diff options
context:
space:
mode:
Diffstat (limited to '_source/plugins/about/plugin.js')
-rw-r--r--_source/plugins/about/plugin.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/_source/plugins/about/plugin.js b/_source/plugins/about/plugin.js
new file mode 100644
index 0000000..1b702d9
--- /dev/null
+++ b/_source/plugins/about/plugin.js
@@ -0,0 +1,22 @@
+/*
+Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
+For licensing, see LICENSE.html or http://ckeditor.com/license
+*/
+
+CKEDITOR.plugins.add( 'about',
+{
+ init : function( editor )
+ {
+ var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) );
+ command.modes = { wysiwyg:1, source:1 };
+ command.canUndo = false;
+
+ editor.ui.addButton( 'About',
+ {
+ label : editor.lang.about.title,
+ command : 'about'
+ });
+
+ CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' );
+ }
+});