summaryrefslogtreecommitdiff
path: root/js/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-10-21 16:55:36 +0400
committerAndrew Dolgov <[email protected]>2013-10-21 16:55:36 +0400
commitb8fd08d6dbc32e892f19830c25abfc416e14fa75 (patch)
tree21d6ba7d04a9d1faedbf4ca5d33e3ad3050903ef /js/viewfeed.js
parent41489735b50965ccd0121fac2c14bb01ad095c9b (diff)
do not unpack all visible headlines in collapsed mode because those are unpacked on expand
Diffstat (limited to 'js/viewfeed.js')
-rw-r--r--js/viewfeed.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/viewfeed.js b/js/viewfeed.js
index 301260f13..3295182fc 100644
--- a/js/viewfeed.js
+++ b/js/viewfeed.js
@@ -1245,7 +1245,7 @@ function postMouseOut(id) {
function unpackVisibleHeadlines() {
try {
- if (!isCdmMode()) return;
+ if (!isCdmMode() || !getInitParam("cdm_expanded")) return;
$$("#headlines-frame > div[id*=RROW]").each(
function(child) {