aboutsummaryrefslogtreecommitdiffstats
path: root/twittperator.js
diff options
context:
space:
mode:
authoranekos2010-12-29 22:09:19 +0900
committeranekos2010-12-29 22:09:19 +0900
commit00cb16b2e1852d54626495ddd53a625b2286e144 (patch)
tree7575adc125ec691a8b9b866173805366002bd83f /twittperator.js
parenta0fd17a10205909246a9d190f19dab7ae2b5bb2d (diff)
downloadvimperator-plugins-00cb16b2e1852d54626495ddd53a625b2286e144.tar.bz2
TL表示が逆になっていたのを修正
Diffstat (limited to 'twittperator.js')
-rw-r--r--twittperator.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/twittperator.js b/twittperator.js
index 18dc769..038a9f1 100644
--- a/twittperator.js
+++ b/twittperator.js
@@ -28,7 +28,7 @@ let PLUGIN_INFO =
<name>Twittperator</name>
<description>Twitter Client using OAuth and Streaming API</description>
<description lang="ja">OAuth/StreamingAPI対応Twitterクライアント</description>
- <version>1.13.0</version>
+ <version>1.13.1</version>
<minVersion>2.3</minVersion>
<maxVersion>3.0</maxVersion>
<author mail="teramako@gmail.com" homepage="http://d.hatena.ne.jp/teramako/">teramako</author>
@@ -1689,7 +1689,7 @@ let PLUGIN_INFO =
}, // }}}
showUserTimeline: function(arg) { // {{{
Twitter.getUserTimeline(arg, function(statuses) {
- Twittperator.showTL(statuses);
+ Twittperator.showTL(Array.slice(statuses).reverse());
});
}, // }}}
showStatusMenu: function(status) { // {{{