From 01e5e96354f32a5ecf1e808c74e6e06d2de08078 Mon Sep 17 00:00:00 2001 From: Francesco Malagrino Date: Thu, 30 Jan 2014 12:07:29 +0100 Subject: [PATCH] Create about.js --- ckeditor/plugins/about/dialogs/about.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ckeditor/plugins/about/dialogs/about.js diff --git a/ckeditor/plugins/about/dialogs/about.js b/ckeditor/plugins/about/dialogs/about.js new file mode 100644 index 0000000..3a0b993 --- /dev/null +++ b/ckeditor/plugins/about/dialogs/about.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("about",function(a){var a=a.lang.about,b=CKEDITOR.plugins.get("about").path+"dialogs/"+(CKEDITOR.env.hidpi?"hidpi/":"")+"logo_ckeditor.png";return{title:CKEDITOR.env.ie?a.dlgTitle:a.title,minWidth:390,minHeight:230,contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[{type:"html",html:'

CKEditor '+CKEDITOR.version+" (revision "+CKEDITOR.revision+')
http://ckeditor.com

'+a.help.replace("$1",''+ +a.userGuide+"")+"

"+a.moreInfo+'
http://ckeditor.com/about/license

'+a.copy.replace("$1",'CKSource - Frederico Knabben')+"

"}]}],buttons:[CKEDITOR.dialog.cancelButton]}});