X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fplugins%2Fdocprops%2Fplugin.js;fp=_source%2Fplugins%2Fdocprops%2Fplugin.js;h=0000000000000000000000000000000000000000;hb=4625dba05116026713fee9008dd93306be0d1553;hp=a74b69e5fac3531156d07e844d7355241fdbcea4;hpb=3fe9cac293e090ea459a3ee10d78cbe9e1dd0e03;p=ckeditor.git diff --git a/_source/plugins/docprops/plugin.js b/_source/plugins/docprops/plugin.js deleted file mode 100644 index a74b69e..0000000 --- a/_source/plugins/docprops/plugin.js +++ /dev/null @@ -1,22 +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( 'docprops', -{ - init : function( editor ) - { - var cmd = new CKEDITOR.dialogCommand( 'docProps' ); - // Only applicable on full page mode. - cmd.modes = { wysiwyg : editor.config.fullPage }; - editor.addCommand( 'docProps', cmd ); - CKEDITOR.dialog.add( 'docProps', this.path + 'dialogs/docprops.js' ); - - editor.ui.addButton( 'DocProps', - { - label : editor.lang.docprops.label, - command : 'docProps' - }); - } -});