Bug #246414 --> Drafts & Templates don't remember background and font colors

This commit is contained in:
scott%scott-macgregor.org 2004-06-11 22:57:42 +00:00
Родитель 97c0ac2a5c
Коммит e64c202755
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -3238,17 +3238,23 @@ function loadHTMLMsgPrefs()
var bodyElement = GetBodyElement();
try {
textColor = pref.getCharPref("msgcompose.text_color");
if (!bodyElement.getAttribute("text"))
{
bodyElement.setAttribute("text", textColor);
gDefaultTextColor = textColor;
document.getElementById("cmd_fontColor").setAttribute("state", textColor);
onFontColorChange();
}
} catch (e) {}
try {
bgColor = pref.getCharPref("msgcompose.background_color");
if (!bodyElement.getAttribute("bgcolor"))
{
bodyElement.setAttribute("bgcolor", bgColor);
gDefaultBackgroundColor = bgColor;
document.getElementById("cmd_backgroundColor").setAttribute("state", bgColor);
onBackgroundColorChange();
}
} catch (e) {}
}