summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-10-18 03:55:44 +0100
committerAndrew Dolgov <[email protected]>2007-10-18 03:55:44 +0100
commita04c8e8dc2efd08e6f4d828d93099bacf02d421d (patch)
treeb0ca415a34a1d2c513396244f3095ce9b3a27591 /viewfeed.js
parentbef4c2451ee731b572e95646f40e75a514baae9a (diff)
add collapsed CDM mode
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 273e2d91b..24584e49f 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -1355,3 +1355,25 @@ function catchupRelativeToArticle(below) {
exception_error("catchupRelativeToArticle", e);
}
}
+
+function cdmExpandArticle(a_id) {
+ try {
+ var id = 'CICD-' + a_id;
+
+ Effect.Appear(id, {duration : 0.5,
+ beforeStart: function(effect) {
+ var h_id = 'CICH-' + a_id;
+ var h_elem = document.getElementById(h_id);
+ if (h_elem) { h_elem.style.display = "none"; }
+
+ toggleUnread(a_id, 0);
+ }});
+
+
+ } catch (e) {
+ exception_error("appearBlockElementF", e);
+ }
+
+}
+
+