bug-75464 r=andreww sr=hewitt

This commit is contained in:
anatoliya%netscape.com 2001-04-18 02:12:48 +00:00
parent 889b41d696
commit b8327b19c5
2 changed files with 4 additions and 1 deletions

View File

@ -107,7 +107,7 @@
<command id="cmd_objectProperties" oncommand="goDoCommand('cmd_objectProperties')"/>
<command id="cmd_insertChars" oncommand="goDoCommand('cmd_insertChars')" label="&insertCharsCmd.label;"/>
<command id="cmd_insertHTML" oncommand="goDoCommand('cmd_insertHTML')" label="&insertHTMLCmd.label;"/>
<command id="cmd_smiley" state="" />
<command id="cmd_insertBreak" oncommand="goDoCommand('cmd_insertBreak')"/>
<command id="cmd_insertBreakAll" oncommand="goDoCommand('cmd_insertBreakAll')"/>
<command id="cmd_NormalMode" oncommand="goDoCommand('cmd_NormalMode')" label="&NormalMode.label;"/>
@ -164,6 +164,7 @@
<command id="cmd_bold" state="false" oncommand="goDoCommand('cmd_bold')"/>
<command id="cmd_italic" state="false" oncommand="goDoCommand('cmd_italic')"/>
<command id="cmd_underline" state="false" oncommand="goDoCommand('cmd_underline')"/>
<command id="cmd_smiley" state="" />
<command id="cmd_strikethrough" state="false" oncommand="goDoCommand('cmd_strikethrough')"/>
<command id="cmd_superscript" state="false" oncommand="goDoCommand('cmd_superscript')"/>

View File

@ -332,6 +332,7 @@ var defaultController =
case "cmd_bold":
case "cmd_italic":
case "cmd_underline":
case "cmd_smiley":
case "cmd_strikethrough":
case "cmd_superscript":
case "cmd_subscript":
@ -511,6 +512,7 @@ function CommandUpdate_MsgCompose()
goUpdateCommand("cmd_indent");
goUpdateCommand("cmd_outdent");
goUpdateCommand("cmd_align");
goUpdateCommand("cmd_smiley");
goUpdateCommand("cmd_objectProperties");
goUpdateCommand("cmd_InsertTable");
goUpdateCommand("cmd_InsertRowAbove");