1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-05 05:14:19 +01:00

Fix useragent.js bug.

This commit is contained in:
Kris Maglione
2011-12-01 14:29:53 -05:00
parent 81271ab4ef
commit e9b287c83c
2 changed files with 10 additions and 2 deletions

View File

@@ -1483,7 +1483,7 @@ var Commands = Module("commands", {
let start = "«%-d-]'", end = "'[-d-%»";
let n = /^\d+$/.test(cmd.argCount) ? parseInt(argCount) : 12;
let n = /^\d+$/.test(cmd.argCount) ? parseInt(cmd.argCount) : 12;
for (let i = args.completeArg; i < n; i++)
args[i] = start + i + end;