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

Fix some functions that used to use args.string.

This commit is contained in:
Kris Maglione
2010-09-29 13:21:01 -04:00
parent 47f5b5e9d9
commit f7b99e9272
9 changed files with 25 additions and 25 deletions

View File

@@ -117,7 +117,7 @@ const History = Module("history", {
commands.add(["ba[ck]"],
"Go back in the browser history",
function (args) {
let url = args.literalArg;
let url = args[0];
if (args.bang)
history.goToStart();