Sha256: c23d3181dfaf303237e3e8a6359527928c0ed81095437f5ff9ee3c3474d4fb60
Contents?: true
Size: 594 Bytes
Versions: 93
Compression:
Stored size: 594 Bytes
Contents
/* Copyright (c) 2003-2010, 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; editor.ui.addButton( 'About', { label : editor.lang.about.title, command : 'about' }); CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' ); } });
Version data entries
93 entries across 93 versions & 11 rubygems