summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 633d883b7..1a3d775ff 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -921,3 +921,19 @@ function cache_invalidate(id) {
function getActiveArticleId() {
return active_post_id;
}
+
+function cdmMouseIn(elem) {
+ try {
+ if (elem.id && elem.id.match("RROW-")) {
+ var id = elem.id.replace("RROW-", "");
+ active_post_id = id;
+ }
+ } catch (e) {
+ exception_error("cdmMouseIn", e);
+ }
+
+}
+
+function cdmMouseOut(elem) {
+ active_post_id = false;
+}