source: trunk/filemanager/tp/ckeditor/_source/plugins/horizontalrule/plugin.js @ 2000

Revision 2000, 721 bytes checked in by amuller, 14 years ago (diff)

Ticket #597 - Implementação do módulo gerenciador de arquivos

Line 
1/*
2Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6/**
7 * @file Horizontal Rule plugin.
8 */
9
10(function()
11{
12        var horizontalruleCmd =
13        {
14                exec : function( editor )
15                {
16                        editor.insertElement( editor.document.createElement( 'hr' ) );
17                }
18        };
19
20        var pluginName = 'horizontalrule';
21
22        // Register a plugin named "horizontalrule".
23        CKEDITOR.plugins.add( pluginName,
24        {
25                init : function( editor )
26                {
27                        editor.addCommand( pluginName, horizontalruleCmd );
28                        editor.ui.addButton( 'HorizontalRule',
29                                {
30                                        label : editor.lang.horizontalrule,
31                                        command : pluginName
32                                });
33                }
34        });
35})();
Note: See TracBrowser for help on using the repository browser.