summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-25 20:41:23 +0400
committerAndrew Dolgov <[email protected]>2013-03-25 20:41:23 +0400
commit72394a1e2d6b808951f0d6c2f64660bbef79cdf4 (patch)
tree36b5d7b4e5afedb472cda6bd4bd313c73ba90e36 /js
parent45b9c6fbcb1a83fdc2b335b8df89066146e5f8d6 (diff)
enable tooltips on normal mode
Diffstat (limited to '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 0e2e9e3fa..55ebaa7c2 100644
--- a/js/viewfeed.js
+++ b/js/viewfeed.js
@@ -1173,7 +1173,7 @@ function postMouseIn(e, id) {
if (_post_preview_timeout) window.clearTimeout(_post_preview_timeout);
- if (!getInitParam("cdm_expanded")) {
+ if (!isCdmMode() || !getInitParam("cdm_expanded")) {
_post_preview_timeout = window.setTimeout(function() {
displaySmallArticlePreview(e, id);
}, 1000);