Fixed Doc title in Revert dialog message bug=96073, r=brade, sr=kin; Composer part of 'noshade' syntax bug 88761, r=kin, sr=sfraser

git-svn-id: svn://10.0.0.236/trunk@101501 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cmanske%netscape.com
2001-08-21 13:45:01 +00:00
parent 7ddcdbae03
commit 845c66cf30

View File

@@ -422,9 +422,9 @@ var nsRevertCommand =
var result = {value:0};
// Put the page title in the message string
var title = window.editorShell.editorDocument.title;
if (!title || title.length == 0)
title = window.editorShell.GetTitle("untitled");
var title = window.editorShell.GetDocumentTitle();
if (!title)
title = window.editorShell.GetString("untitled");
var msg = window.editorShell.GetString("AbandonChanges").replace(/%title%/,title);
@@ -836,7 +836,7 @@ var nsHLineCommand =
if (shading) {
hLine.removeAttribute("noshade");
} else {
hLine.setAttribute("noshade", "");
hLine.setAttribute("noshade", "noshade");
}
}
catch (ex) {