We need to hide the Insert menu as well in plain text mode.

This commit is contained in:
ducarroz%netscape.com 2000-05-09 01:17:33 +00:00
parent 500ad0c399
commit 1b8746adf7

View File

@ -230,9 +230,10 @@ function ComposeStartup()
}
else
{
//Remove HTML toolbar and format menu as we are editing in plain text mode
//Remove HTML toolbar, format and insert menus as we are editing in plain text mode
document.getElementById("FormatToolbar").setAttribute("hidden", true);
document.getElementById("formatMenu").setAttribute("hidden", true);
document.getElementById("insertMenu").setAttribute("hidden", true);
window.editorShell.SetEditorType("textmail");
dump("editor initialized in PLAIN TEXT mode\n");