mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 18:42:27 +01:00
Fix 'for each' loops.
This commit is contained in:
@@ -535,7 +535,7 @@ liberator.Completion = function () //{{{
|
||||
// Longest Common Subsequence
|
||||
// This shouldn't use buildLongestCommonSubstring for performance
|
||||
// reasons, so as not to cycle through the urls twice
|
||||
for each (elem in urls)
|
||||
for (let [,elem] in Iterator(urls))
|
||||
{
|
||||
var url = elem[0] || "";
|
||||
var title = elem[1] || "";
|
||||
|
||||
Reference in New Issue
Block a user