/** * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or http://ckeditor.com/license */ CKEDITOR.dialog.add( 'about', function( editor ) { var lang = editor.lang.about, imagePath = CKEDITOR.getUrl( CKEDITOR.plugins.get( 'about' ).path + 'dialogs/' + ( CKEDITOR.env.hidpi ? 'hidpi/' : '' ) + 'logo_ckeditor.png' ); return { title: CKEDITOR.env.ie ? lang.dlgTitle : lang.title, minWidth: 390, minHeight: 230, contents: [ { id: 'tab1', label: '', title: '', expand: true, padding: 0, elements: [ { type: 'html', html: '' + '
' + '' + '

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

' + '

' + lang.help.replace( '$1', '' + lang.userGuide + '' ) + '

' + '

' + lang.moreInfo + '
' + 'http://ckeditor.com/about/license' + '

' + '

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

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