1 /* 2 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 For 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". 11 CKEDITOR.plugins.add( 'newpage', 12 { 13 init : function( editor, pluginPath ) 14 { 15 editor.addCommand( 'newpage', 16 { 17 exec : function( editor ) 18 { 19 editor.setData( editor.config.newpage_html ); 20 } 21 }); 22 23 editor.ui.addButton( 'NewPage', 24 { 25 label : editor.lang.newpage, 26 command : 'newpage' 27 }); 28 } 29 }); 30 31 CKEDITOR.config.newpage_html = ''; 32