summaryrefslogtreecommitdiff
path: root/plugins/shorten_expanded
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-11-30 13:51:54 +0300
committerAndrew Dolgov <[email protected]>2018-11-30 13:51:54 +0300
commit9563e3bcd662b87ea6779714b51afb61571dd32d (patch)
tree2e492c27f08380f1e58458f8546f8aea212e64c9 /plugins/shorten_expanded
parentc8c9a26f3071edc2f0307336b6dd6062e4351773 (diff)
remove expandable CDM headlines
Diffstat (limited to 'plugins/shorten_expanded')
-rw-r--r--plugins/shorten_expanded/init.js31
1 files changed, 14 insertions, 17 deletions
diff --git a/plugins/shorten_expanded/init.js b/plugins/shorten_expanded/init.js
index d75644286..a744aad00 100644
--- a/plugins/shorten_expanded/init.js
+++ b/plugins/shorten_expanded/init.js
@@ -26,27 +26,24 @@ require(['dojo/_base/kernel', 'dojo/ready'], function (dojo, ready) {
ready(function() {
PluginHost.register(PluginHost.HOOK_ARTICLE_RENDERED_CDM, function(row) {
- if (getInitParam('cdm_expanded')) {
+ window.setTimeout(function() {
+ if (row) {
+ const c_inner = row.select(".cdmContentInner")[0];
+ const c_inter = row.select(".cdmIntermediate")[0];
- window.setTimeout(function() {
- if (row) {
- const c_inner = row.select(".cdmContentInner")[0];
- const c_inter = row.select(".cdmIntermediate")[0];
+ if (c_inner && c_inter &&
+ row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
- if (c_inner && c_inter &&
- row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
+ c_inter.parentNode.removeChild(c_inter);
- c_inter.parentNode.removeChild(c_inter);
-
- c_inner.innerHTML = "<div class='contentSizeWrapper'>" +
- c_inner.innerHTML +
- c_inter.innerHTML + "</div>" +
- "<button class='expandPrompt' onclick='return expandSizeWrapper(\""+row.id+"\")' href='#'>" +
- __("Click to expand article") + "</button>";
- }
+ c_inner.innerHTML = "<div class='contentSizeWrapper'>" +
+ c_inner.innerHTML +
+ c_inter.innerHTML + "</div>" +
+ "<button class='expandPrompt' onclick='return expandSizeWrapper(\""+row.id+"\")' href='#'>" +
+ __("Click to expand article") + "</button>";
}
- }, 150);
- }
+ }
+ }, 150);
return true;
});