]> git.immae.eu Git - perso/Immae/Projets/packagist/connexionswing-ckeditor-component.git/blame - sources/plugins/about/plugin.js
Upgrade to 4.5.7 and add some plugin
[perso/Immae/Projets/packagist/connexionswing-ckeditor-component.git] / sources / plugins / about / plugin.js
CommitLineData
7adcb81e 1/**\r
3b35bd27 2 * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.\r
7adcb81e
IB
3 * For licensing, see LICENSE.md or http://ckeditor.com/license\r
4 */\r
5\r
6CKEDITOR.plugins.add( 'about', {\r
7 requires: 'dialog',\r
8 // jscs:disable maximumLineLength\r
3b35bd27 9 lang: 'af,ar,bg,bn,bs,ca,cs,cy,da,de,de-ch,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE%\r
7adcb81e
IB
10 // jscs:enable maximumLineLength\r
11 icons: 'about', // %REMOVE_LINE_CORE%\r
12 hidpi: true, // %REMOVE_LINE_CORE%\r
13 init: function( editor ) {\r
14 var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) );\r
15 command.modes = { wysiwyg: 1, source: 1 };\r
16 command.canUndo = false;\r
17 command.readOnly = 1;\r
18\r
19 editor.ui.addButton && editor.ui.addButton( 'About', {\r
20 label: editor.lang.about.title,\r
21 command: 'about',\r
22 toolbar: 'about'\r
23 } );\r
24\r
25 CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' );\r
26 }\r
27} );\r