aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar tczy <cy@wre.ath.cx>2010-01-06 06:58:28 +0200
committerGravatar tczy <cy@wre.ath.cx>2010-01-06 06:58:28 +0200
commit9d53b1fcc0828b0359bdae606d79f3106b7cca49 (patch)
treecb923e275d0a8df9c52e80e073f1c737731259ed /examples
parente302b74a1bf6ff2edd2730bf32e1db28d7caff0a (diff)
remove unneeded var
Diffstat (limited to 'examples')
-rw-r--r--examples/data/uzbl/scripts/follow.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/data/uzbl/scripts/follow.js b/examples/data/uzbl/scripts/follow.js
index d697368..12b3765 100644
--- a/examples/data/uzbl/scripts/follow.js
+++ b/examples/data/uzbl/scripts/follow.js
@@ -263,9 +263,8 @@ function followLinks(follow) {
}
}
-//Parse input: first argument is user input, second is allowed hint keys.
+//Parse input: first argument is user input, second is defined hint keys.
var args = '%s'.split(' ');
-var following = args[0];
var charset = args[1];
-followLinks(following);
+followLinks(args[0]);