1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 16:52:25 +01:00

fix tabs.get() - iterate over the browsers array via index rather than property

This commit is contained in:
Doug Kearns
2008-08-28 05:33:40 +00:00
parent 8cd4a8c2bb
commit 14fca7b099

View File

@@ -639,7 +639,7 @@ liberator.Tabs = function () //{{{
{
var buffers = [];
var browsers = getBrowser().browsers;
for (var i in browsers)
for (var i = 0; i < browsers.length; i++)
{
var title = browsers[i].contentTitle || "(Untitled)";
var uri = browsers[i].currentURI.spec;