From 5ade8b362a571ce1c1411bbaf1a779d58a2a616b Mon Sep 17 00:00:00 2001 From: Mason Larobina Date: Sun, 24 Jan 2010 23:14:53 +0800 Subject: Default follow keys to numbers and fix follower script argument order. --- examples/data/scripts/follow.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'examples/data/scripts/follow.js') diff --git a/examples/data/scripts/follow.js b/examples/data/scripts/follow.js index 12b3765..afb327f 100644 --- a/examples/data/scripts/follow.js +++ b/examples/data/scripts/follow.js @@ -263,8 +263,7 @@ function followLinks(follow) { } } -//Parse input: first argument is user input, second is defined hint keys. +//Parse input: first argument is follow keys, second is user input. var args = '%s'.split(' '); -var charset = args[1]; - -followLinks(args[0]); +var charset = args[0]; +followLinks(args[1]); -- cgit v1.2.3