source: trunk/admin/inc/ckeditor/_source/plugins/newpage/plugin.js@ 239

Last change on this file since 239 was 239, checked in by luc, 9 years ago

Admin: correzione visulaizzazione immissione dati spoglio per Chrome e Safari - Aggiornamento dell'editor da FCKeditor a CKeditor , accessibili anche a Chrome e Safari.

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1/*
2Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6/**
7 * @file Horizontal Page Break
8 */
9
10// Register a plugin named "newpage".
11CKEDITOR.plugins.add( 'newpage',
12{
13 init : function( editor )
14 {
15 editor.addCommand( 'newpage',
16 {
17 modes : { wysiwyg:1, source:1 },
18
19 exec : function( editor )
20 {
21 var command = this;
22 editor.setData( editor.config.newpage_html || '', function()
23 {
24 // Save the undo snapshot after all document changes are affected. (#4889)
25 setTimeout( function ()
26 {
27 editor.fire( 'afterCommandExec',
28 {
29 name: command.name,
30 command: command
31 } );
32 editor.selectionChange();
33
34 }, 200 );
35 } );
36 editor.focus();
37 },
38 async : true
39 });
40
41 editor.ui.addButton( 'NewPage',
42 {
43 label : editor.lang.newPage,
44 command : 'newpage'
45 });
46 }
47});
48/**
49 * The HTML to load in the editor when the "new page" command is executed.
50 * @name CKEDITOR.config.newpage_html
51 * @type String
52 * @default ''
53 * @example
54 * config.newpage_html = '<p>Type your text here.</p>';
55 */
Note: See TracBrowser for help on using the repository browser.