X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fplugins%2Fabout%2Fplugin.js;fp=_source%2Fplugins%2Fabout%2Fplugin.js;h=0000000000000000000000000000000000000000;hb=4625dba05116026713fee9008dd93306be0d1553;hp=511c1e61f2d5c62743cdff8689900c6bc9595095;hpb=3fe9cac293e090ea459a3ee10d78cbe9e1dd0e03;p=ckeditor.git diff --git a/_source/plugins/about/plugin.js b/_source/plugins/about/plugin.js deleted file mode 100644 index 511c1e6..0000000 --- a/_source/plugins/about/plugin.js +++ /dev/null @@ -1,24 +0,0 @@ -/* -Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license -*/ - -CKEDITOR.plugins.add( 'about', -{ - requires : [ 'dialog' ], - init : function( editor ) - { - var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) ); - command.modes = { wysiwyg:1, source:1 }; - command.canUndo = false; - command.readOnly = 1; - - editor.ui.addButton( 'About', - { - label : editor.lang.about.title, - command : 'about' - }); - - CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' ); - } -});