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

Whitespace and semicolon fixes.

This commit is contained in:
Doug Kearns
2009-08-10 02:15:23 +10:00
parent a8001baa03
commit 77458e5b8a
16 changed files with 66 additions and 61 deletions

4
common/content/ui.js Normal file → Executable file
View File

@@ -363,7 +363,7 @@ function CommandLine() //{{{
{
case this.UP:
if (this.selected == null)
idx = -2
idx = -2;
else
idx = this.selected - 1;
break;
@@ -2126,7 +2126,7 @@ function StatusLine() //{{{
value = value.replace(/[\u200e\u200f\u202a\u202b\u202c\u202d\u202e]/g,
encodeURIComponent);
return value;
}
};
if (url == null)
// TODO: this probably needs a more general solution.