1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-08 08:34:12 +01:00

whitespace/formatting fixes

This commit is contained in:
Doug Kearns
2008-11-28 13:01:20 +00:00
parent d25867e7b5
commit 5a3a35ea26
10 changed files with 30 additions and 26 deletions

View File

@@ -395,9 +395,11 @@ let (array = util.Array)
}
const styles = storage.newObject("styles", Styles, false);
try {
const highlight = storage.newObject("highlight", Highlights, false);
} catch(e) { liberator.reportError(e) }
try
{
const highlight = storage.newObject("highlight", Highlights, false);
}
catch (e) { liberator.reportError(e) }
liberator.registerObserver("load_commands", function ()
{
@@ -481,7 +483,7 @@ liberator.registerObserver("load_commands", function ()
{
command: this.name,
bang: true,
options: sty.name ? {"-name": sty.name} : {},
options: sty.name ? { "-name": sty.name } : {},
arguments: [sty.sites.join(",")],
literalArg: sty.css
} for ([k, sty] in styles.userSheets)