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

Fix :sanitize marks.

This commit is contained in:
Doug Kearns
2015-04-27 20:51:57 +10:00
parent b2d2e29e7a
commit 165c619b8e

View File

@@ -390,7 +390,7 @@ var Marks = Module("marks", {
action: function (timespan, host) {
function matchhost(url) !host || util.isDomainURL(url, host);
function match(marks) (k
for ([k, v] in iter(marks))
for ([k, v] of iter(marks))
if (timespan.contains(v.timestamp) && matchhost(v.location)));
for (let [url, local] of marks._localMarks)