source: companies/serpro/expressoMail1_2/js/fckeditor/editor/plugins/tablecommands/fckplugin.js @ 903

Revision 903, 1.7 KB checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

Line 
1/*
2 * FCKeditor - The text editor for internet
3 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
4 *
5 * Licensed under the terms of the GNU Lesser General Public License:
6 *              http://www.opensource.org/licenses/lgpl-license.php
7 *
8 * For further information visit:
9 *              http://www.fckeditor.net/
10 *
11 * "Support Open Source software. What about a donation today?"
12 *
13 * File Name: fckplugin.js
14 *      This plugin register the required Toolbar items to be able to insert the
15 *      toolbar commands in the toolbar.
16 *
17 * File Authors:
18 *              Frederico Caldeira Knabben (fredck@fckeditor.net)
19 */
20
21FCKToolbarItems.RegisterItem( 'TableInsertRow'          , new FCKToolbarButton( 'TableInsertRow'        , FCKLang.InsertRow, null, null, null, null, 62 ) ) ;
22FCKToolbarItems.RegisterItem( 'TableDeleteRows'         , new FCKToolbarButton( 'TableDeleteRows'       , FCKLang.DeleteRows, null, null, null, null, 63 ) ) ;
23FCKToolbarItems.RegisterItem( 'TableInsertColumn'       , new FCKToolbarButton( 'TableInsertColumn'     , FCKLang.InsertColumn, null, null, null, null, 64 ) ) ;
24FCKToolbarItems.RegisterItem( 'TableDeleteColumns'      , new FCKToolbarButton( 'TableDeleteColumns', FCKLang.DeleteColumns, null, null, null, null, 65 ) ) ;
25FCKToolbarItems.RegisterItem( 'TableInsertCell'         , new FCKToolbarButton( 'TableInsertCell'       , FCKLang.InsertCell, null, null, null, null, 58 ) ) ;
26FCKToolbarItems.RegisterItem( 'TableDeleteCells'        , new FCKToolbarButton( 'TableDeleteCells'      , FCKLang.DeleteCells, null, null, null, null, 59 ) ) ;
27FCKToolbarItems.RegisterItem( 'TableMergeCells'         , new FCKToolbarButton( 'TableMergeCells'       , FCKLang.MergeCells, null, null, null, null, 60 ) ) ;
28FCKToolbarItems.RegisterItem( 'TableSplitCell'          , new FCKToolbarButton( 'TableSplitCell'        , FCKLang.SplitCell, null, null, null, null, 61 ) ) ;
Note: See TracBrowser for help on using the repository browser.