1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-06 21:15:46 +01:00

Fix listing of numeric quickmarks

Thanks to Juergen and Kris. :)
This commit is contained in:
Daniel Bainton
2008-10-24 13:14:28 +00:00
parent 793e45ea83
commit 756adee134

View File

@@ -996,7 +996,7 @@ function QuickMarks() //{{{
} }
} }
let items = ({ title: mark, url: qmarks.get(mark) } for each (mark in marks)); let items = ({ title: String(mark), url: qmarks.get(mark) } for each (mark in marks));
let list = template.bookmarks("QuickMark", items); let list = template.bookmarks("QuickMark", items);
commandline.echo(list, commandline.HL_NORMAL, commandline.FORCE_MULTILINE); commandline.echo(list, commandline.HL_NORMAL, commandline.FORCE_MULTILINE);
} }