Changeset 1106
- Timestamp:
- 11/06/08 22:39:27 (5 years ago)
- Location:
- trunk
- Files:
-
- 6 added
- 2 modified
-
XinhaCore.js (modified) (2 diffs)
-
images/tango/16x16/actions/format-text-background-color.png (added)
-
images/tango/16x16/actions/format-text-color.png (added)
-
images/tango/16x16/actions/format-text-subscript.png (added)
-
images/tango/16x16/actions/format-text-superscript.png (added)
-
images/tango/16x16/actions/view-fullscreen.png (added)
-
images/tango/16x16/actions/view-restore.png (added)
-
modules/FullScreen/full-screen.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/XinhaCore.js
r1105 r1106 1038 1038 underline: [ "Underline", Xinha._lc({key: 'button_underline', string: 'tango/16x16/actions/format-text-underline.png'}, 'Xinha'), false, function(e) { e.execCommand("underline"); } ], 1039 1039 strikethrough: [ "Strikethrough", Xinha._lc({key: 'button_strikethrough', string: 'tango/16x16/actions/format-text-strikethrough.png'}, 'Xinha'), false, function(e) { e.execCommand("strikethrough"); } ], 1040 subscript: [ "Subscript", Xinha._lc({key: 'button_subscript', string: ["ed_buttons_main.gif",3,1]}, 'Xinha'), false, function(e) { e.execCommand("subscript"); } ],1041 superscript: [ "Superscript", Xinha._lc({key: 'button_superscript', string: ["ed_buttons_main.gif",2,1]}, 'Xinha'), false, function(e) { e.execCommand("superscript"); } ],1040 subscript: [ "Subscript", Xinha._lc({key: 'button_subscript', string: 'tango/16x16/actions/format-text-subscript.png'}, 'Xinha'), false, function(e) { e.execCommand("subscript"); } ], 1041 superscript: [ "Superscript", Xinha._lc({key: 'button_superscript', string: 'tango/16x16/actions/format-text-superscript.png'}, 'Xinha'), false, function(e) { e.execCommand("superscript"); } ], 1042 1042 1043 1043 justifyleft: [ "Justify Left", 'tango/16x16/actions/format-justify-left.png', false, function(e) { e.execCommand("justifyleft"); } ], … … 1053 1053 outdent: [ "Decrease Indent", 'tango/16x16/actions/format-indent-less.png', false, function(e) { e.execCommand("outdent"); } ], 1054 1054 indent: [ "Increase Indent",'tango/16x16/actions/format-indent-more.png', false, function(e) { e.execCommand("indent"); } ], 1055 forecolor: [ "Font Color", ["ed_buttons_main.gif",3,3], false, function(e) { e.execCommand("forecolor"); } ],1056 hilitecolor: [ "Background Color", ["ed_buttons_main.gif",2,3], false, function(e) { e.execCommand("hilitecolor"); } ],1055 forecolor: [ "Font Color", 'tango/16x16/actions/format-text-color.png', false, function(e) { e.execCommand("forecolor"); } ], 1056 hilitecolor: [ "Background Color", 'tango/16x16/actions/format-text-background-color.png', false, function(e) { e.execCommand("hilitecolor"); } ], 1057 1057 1058 1058 undo: [ "Undoes your last action", 'tango/16x16/actions/edit-undo.png', false, function(e) { e.execCommand("undo"); } ], -
trunk/modules/FullScreen/full-screen.js
r1057 r1106 8 8 ( 'fullscreen', 9 9 this._lc("Maximize/Minimize Editor"), 10 [_editor_url + cfg.imgURL + 'ed_buttons_main.gif',8,0], true,10 _editor_url + 'images/tango/16x16/actions/view-fullscreen.png', true, 11 11 function(e, objname, obj) 12 12 { … … 57 57 e.sizeEditor(w + 'px', h + 'px',true,true); 58 58 e._sizing = false; 59 if ( e._toolbarObjects.fullscreen ) e._toolbarObjects.fullscreen.swapImage( [_editor_url + cfg.imgURL + 'ed_buttons_main.gif',9,0]);59 if ( e._toolbarObjects.fullscreen ) e._toolbarObjects.fullscreen.swapImage(_editor_url + 'images/tango/16x16/actions/view-restore.png'); 60 60 } 61 61 … … 66 66 e.initSize(); 67 67 e._sizing = false; 68 if ( e._toolbarObjects.fullscreen ) e._toolbarObjects.fullscreen.swapImage( [_editor_url + cfg.imgURL + 'ed_buttons_main.gif',8,0]);68 if ( e._toolbarObjects.fullscreen ) e._toolbarObjects.fullscreen.swapImage(_editor_url + 'images/tango/16x16/actions/view-fullscreen.png'); 69 69 } 70 70
