1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 06:58:00 +01:00

trivial formatting improvements

This commit is contained in:
Doug Kearns
2008-10-05 09:55:56 +00:00
parent d89df7c4e1
commit 86adfc396a
5 changed files with 17 additions and 17 deletions

View File

@@ -344,7 +344,10 @@ liberator.Mail = function () //{{{
var to = escapeRecipient(gDBView.hdrForFirstSelectedMessage.mime2DecodedAuthor);
liberator.commandline.open(":", "message " + to + " -subject=", liberator.modes.EX);
}
catch (e) { liberator.beep(); }
catch (e)
{
liberator.beep();
}
});
liberator.mappings.add(modes, ["r"],
@@ -650,7 +653,10 @@ liberator.Mail = function () //{{{
messenger.launchExternalURL(getRSSUrl());
// TODO: what to do for non-rss message?
}
catch (e) { liberator.beep(); }
catch (e)
{
liberator.beep();
}
});
/////////////////////////////////////////////////////////////////////////////}}}
@@ -1031,7 +1037,7 @@ liberator.Mail = function () //{{{
[false, 0, 0], // HTML
[false, 3, gDisallow_classes_no_html]]; // sanitized/simple HTML
if (typeof(value) != "number" || value < 0 || value > 2)
if (typeof value != "number" || value < 0 || value > 2)
value = 1;
gPrefBranch.setBoolPref("mailnews.display.prefer_plaintext", values[value][0]);