| 1036 | | bold: [ "Bold", Xinha._lc({key: 'button_bold', string: ["ed_buttons_main.gif",3,2]}, 'Xinha'), false, function(e) { e.execCommand("bold"); } ], |
| 1037 | | italic: [ "Italic", Xinha._lc({key: 'button_italic', string: ["ed_buttons_main.gif",2,2]}, 'Xinha'), false, function(e) { e.execCommand("italic"); } ], |
| 1038 | | underline: [ "Underline", Xinha._lc({key: 'button_underline', string: ["ed_buttons_main.gif",2,0]}, 'Xinha'), false, function(e) { e.execCommand("underline"); } ], |
| 1039 | | strikethrough: [ "Strikethrough", Xinha._lc({key: 'button_strikethrough', string: ["ed_buttons_main.gif",3,0]}, 'Xinha'), false, function(e) { e.execCommand("strikethrough"); } ], |
| | 1036 | bold: [ "Bold", Xinha._lc({key: 'button_bold', string: 'tango/16x16/actions/format-text-bold.png'}, 'Xinha'), false, function(e) { e.execCommand("bold"); } ], |
| | 1037 | italic: [ "Italic", Xinha._lc({key: 'button_italic', string: 'tango/16x16/actions/format-text-italic.png'}, 'Xinha'), false, function(e) { e.execCommand("italic"); } ], |
| | 1038 | underline: [ "Underline", Xinha._lc({key: 'button_underline', string: 'tango/16x16/actions/format-text-underline.png'}, 'Xinha'), false, function(e) { e.execCommand("underline"); } ], |
| | 1039 | strikethrough: [ "Strikethrough", Xinha._lc({key: 'button_strikethrough', string: 'tango/16x16/actions/format-text-strikethrough.png'}, 'Xinha'), false, function(e) { e.execCommand("strikethrough"); } ], |
| 1040 | 1040 | subscript: [ "Subscript", Xinha._lc({key: 'button_subscript', string: ["ed_buttons_main.gif",3,1]}, 'Xinha'), false, function(e) { e.execCommand("subscript"); } ], |
| 1041 | 1041 | superscript: [ "Superscript", Xinha._lc({key: 'button_superscript', string: ["ed_buttons_main.gif",2,1]}, 'Xinha'), false, function(e) { e.execCommand("superscript"); } ], |
| 1042 | 1042 | |
| 1043 | | justifyleft: [ "Justify Left", ["ed_buttons_main.gif",0,0], false, function(e) { e.execCommand("justifyleft"); } ], |
| 1044 | | justifycenter: [ "Justify Center", ["ed_buttons_main.gif",1,1], false, function(e){ e.execCommand("justifycenter"); } ], |
| 1045 | | justifyright: [ "Justify Right", ["ed_buttons_main.gif",1,0], false, function(e) { e.execCommand("justifyright"); } ], |
| 1046 | | justifyfull: [ "Justify Full", ["ed_buttons_main.gif",0,1], false, function(e) { e.execCommand("justifyfull"); } ], |
| | 1043 | justifyleft: [ "Justify Left", 'tango/16x16/actions/format-justify-left.png', false, function(e) { e.execCommand("justifyleft"); } ], |
| | 1044 | justifycenter: [ "Justify Center", 'tango/16x16/actions/format-justify-center.png', false, function(e){ e.execCommand("justifycenter"); } ], |
| | 1045 | justifyright: [ "Justify Right", 'tango/16x16/actions/format-justify-right.png', false, function(e) { e.execCommand("justifyright"); } ], |
| | 1046 | justifyfull: [ "Justify Full", 'tango/16x16/actions/format-justify-fill.png', false, function(e) { e.execCommand("justifyfull"); } ], |
| 1053 | | outdent: [ "Decrease Indent", ["ed_buttons_main.gif",1,2], false, function(e) { e.execCommand("outdent"); } ], |
| 1054 | | indent: [ "Increase Indent",["ed_buttons_main.gif",0,2], false, function(e) { e.execCommand("indent"); } ], |
| | 1053 | outdent: [ "Decrease Indent", 'tango/16x16/actions/format-indent-less.png', false, function(e) { e.execCommand("outdent"); } ], |
| | 1054 | indent: [ "Increase Indent",'tango/16x16/actions/format-indent-more.png', false, function(e) { e.execCommand("indent"); } ], |
| 1058 | | undo: [ "Undoes your last action", ["ed_buttons_main.gif",4,2], false, function(e) { e.execCommand("undo"); } ], |
| 1059 | | redo: [ "Redoes your last action", ["ed_buttons_main.gif",5,2], false, function(e) { e.execCommand("redo"); } ], |
| | 1058 | undo: [ "Undoes your last action", 'tango/16x16/actions/edit-undo.png', false, function(e) { e.execCommand("undo"); } ], |
| | 1059 | redo: [ "Redoes your last action", 'tango/16x16/actions/edit-redo.png', false, function(e) { e.execCommand("redo"); } ], |
| 1060 | 1060 | cut: [ "Cut selection", ["ed_buttons_main.gif",5,0], false, function (e, cmd) { e.execCommand(cmd); } ], |
| 1061 | 1061 | copy: [ "Copy selection", ["ed_buttons_main.gif",4,0], false, function (e, cmd) { e.execCommand(cmd); } ], |
| 1062 | 1062 | paste: [ "Paste from clipboard", ["ed_buttons_main.gif",4,1], false, function (e, cmd) { e.execCommand(cmd); } ], |
| 1068 | 1068 | inserttable: [ "Insert Table", ["ed_buttons_main.gif",6,2], false, function(e) { e.execCommand("inserttable"); } ], |
| 1069 | 1069 | |
| 1070 | 1070 | htmlmode: [ "Toggle HTML Source", ["ed_buttons_main.gif",7,0], true, function(e) { e.execCommand("htmlmode"); } ], |
| 1071 | 1071 | toggleborders: [ "Toggle Borders", ["ed_buttons_main.gif",7,2], false, function(e) { e._toggleBorders(); } ], |