From 8f936fc555dd20f2c61f54b40e79b97a5ed201e4 Mon Sep 17 00:00:00 2001
From: cd01
Date: Sat, 19 Jan 2013 01:45:34 +0900
Subject: Add tweetTimeVisible Option
---
twittperator/twsidebar.tw | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
(limited to 'twittperator')
diff --git a/twittperator/twsidebar.tw b/twittperator/twsidebar.tw
index d4c097a..fccdfa6 100644
--- a/twittperator/twsidebar.tw
+++ b/twittperator/twsidebar.tw
@@ -56,6 +56,9 @@ liberator.modules.TWAnekoSB = ANekoSB = (function () {
// サイドバーが閉じていても、こっそり開始しておく
silentStart: false,
+ // 時間とかRTした人のIDとかの表示
+ tweetTimeVisible: false,
+
// 配列かオブジェクトを返すと、変更できる。
// 文字列 "reject" を返すと、そもそもツイートが表示されなくなる。
modifier: function (msg, tab, streamName) {
@@ -144,7 +147,7 @@ liberator.modules.TWAnekoSB = ANekoSB = (function () {
- {t.sub || ''}
+ {(Config.tweetTimeVisible && t.sub) ? t.sub : ''}
{escapeBreakers(t.text)}
--
cgit v1.2.3