1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-06-16 14:05:23 +02: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
Regular → Executable
+2 -2
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.