From 6ef6dfb1680cea90b94cfdf6aa3a2a633ac5bfc3 Mon Sep 17 00:00:00 2001 From: cd01 Date: Fri, 28 Dec 2012 22:45:08 +0900 Subject: Fix tweet width in twsidebar --- twittperator/twsidebar.tw | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/twittperator/twsidebar.tw b/twittperator/twsidebar.tw index f0c0cba..b8a2a84 100644 --- a/twittperator/twsidebar.tw +++ b/twittperator/twsidebar.tw @@ -136,17 +136,17 @@ liberator.modules.TWAnekoSB = ANekoSB = (function () { "width: " + px(sbWidth - 100) + ' !important' ].join(';')} xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> - - + + - - + + - {escapeBreakers(t.text)} + {escapeBreakers(t.text)} ; -- cgit v1.2.3 From abe54a78bc9bdb6384bbed311de5dd9462e70513 Mon Sep 17 00:00:00 2001 From: cd01 Date: Fri, 18 Jan 2013 23:37:48 +0900 Subject: Fix min width in twsidebar --- twittperator/twsidebar.tw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twittperator/twsidebar.tw b/twittperator/twsidebar.tw index b8a2a84..d4c097a 100644 --- a/twittperator/twsidebar.tw +++ b/twittperator/twsidebar.tw @@ -144,7 +144,7 @@ liberator.modules.TWAnekoSB = ANekoSB = (function () { - + {t.sub || ''} {escapeBreakers(t.text)} -- cgit v1.2.3 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(-) 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