diff options
author | Kris Maglione <jg@suckless.org> | 2009-09-26 20:16:13 -0400 |
---|---|---|
committer | Kris Maglione <jg@suckless.org> | 2009-09-26 20:16:13 -0400 |
commit | adc201f4454aabb9fbca693094394af114b639bc (patch) | |
tree | 98f3f9cd39d15c486ccfc31576be61d4d7b15630 /common/content/tabs.js | |
parent | 5a0a8dd223c21c1a54b681346696971fe22cd137 (diff) | |
download | pentadactyl-adc201f4454aabb9fbca693094394af114b639bc.tar.gz |
Fix bookmarks.isBookmark yet again. Check manually, this time.
Diffstat (limited to 'common/content/tabs.js')
-rw-r--r-- | common/content/tabs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/tabs.js b/common/content/tabs.js index 07349e8d..fec81609 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -173,7 +173,7 @@ function Tabs() //{{{ setter: function (value) { let [open, restriction] = [1, 0]; - for (let [, opt] in Iterator(this.parseValue(value))) + for (let [, opt] in Iterator(this.parseValues(value))) { if (opt == "tab") open = 3; |