aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/link_hints.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'content_scripts/link_hints.coffee')
-rw-r--r--content_scripts/link_hints.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee
index 361b5c74..34ecb431 100644
--- a/content_scripts/link_hints.coffee
+++ b/content_scripts/link_hints.coffee
@@ -301,7 +301,7 @@ alphabetHints =
#
shuffleHints: (hints, characterSetLength) ->
buckets = ([] for i in [0...characterSetLength] by 1)
- for hint in hints
+ for hint, i in hints
buckets[i % buckets.length].push(hint)
result = []
for bucket in buckets