diff options
author | anekos | 2010-09-21 22:49:33 +0000 |
---|---|---|
committer | anekos | 2010-09-21 22:49:33 +0000 |
commit | 626a8e60a41754ef5042d865b205fd9d0fa46d9a (patch) | |
tree | df35e5b38a3574a9535fab063abaa8f3dd529b96 | |
parent | 53b55145ada6814ff0fb953124046f76294cd4d5 (diff) | |
download | vimperator-plugins-626a8e60a41754ef5042d865b205fd9d0fa46d9a.tar.bz2 |
isTrack が真になる罠
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38505 d0d07461-0603-4401-acd4-de1884942a52
-rw-r--r-- | twittperator/twlist-win.tw | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/twittperator/twlist-win.tw b/twittperator/twlist-win.tw index 511478a..0a4154a 100644 --- a/twittperator/twlist-win.tw +++ b/twittperator/twlist-win.tw @@ -64,7 +64,7 @@ let winXML = <> tabBox = $("twlist-tabbox"); cmdBox = $("twlist-command"); - liberator.plugins.twittperator.Tweets.slice(0,twlist.maxRows).reverse().forEach(add); + liberator.plugins.twittperator.Tweets.slice(0,twlist.maxRows).reverse().forEach(function(it) add(it)); if (twlist.trackWords){ if (twlist.twlistTrack){ TrackTabs.init(twlist.twlistTrack); |