зеркало из https://github.com/mozilla/pjs.git
Bug #246414 --> Drafts & Templates don't remember background and font colors
This commit is contained in:
Родитель
97c0ac2a5c
Коммит
e64c202755
|
@ -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) {}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче