Sha256: a96f3ed0984727500f5a8fc52562514ffc31ae1efb5609dd8c5f229741206317
Contents?: true
Size: 619 Bytes
Versions: 88
Compression:
Stored size: 619 Bytes
Contents
/* Copyright (c) 2003-2011, 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' ); } });
Version data entries
88 entries across 85 versions & 9 rubygems