]> git.wh0rd.org - tt-rss.git/blobdiff - plugins/shorten_expanded/init.js
plugins: run eslint const/let fixes
[tt-rss.git] / plugins / shorten_expanded / init.js
index ffec6271d70651b48a2a321faca8bb54561ee47d..d7564428655f90edc672de34a82f5d029b3e44d7 100644 (file)
@@ -2,13 +2,13 @@ var _shorten_expanded_threshold = 1.5; //window heights
 
 function expandSizeWrapper(id) {
        try {
-               var row = $(id);
+               const row = $(id);
 
                console.log(row);
 
                if (row) {
-                       var content = row.select(".contentSizeWrapper")[0];
-                       var link = row.select(".expandPrompt")[0];
+                       const content = row.select(".contentSizeWrapper")[0];
+                       const link = row.select(".expandPrompt")[0];
 
                        if (content) content.removeClassName("contentSizeWrapper");
                        if (link) Element.hide(link);
@@ -30,15 +30,19 @@ require(['dojo/_base/kernel', 'dojo/ready'], function  (dojo, ready) {
 
                                window.setTimeout(function() {
                                        if (row) {
-                                               if (row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
-                                                       var content = row.select(".cdmContentInner")[0];
+                                               const c_inner = row.select(".cdmContentInner")[0];
+                                               const c_inter = row.select(".cdmIntermediate")[0];
 
-                                                       if (content) {
-                                                               content.innerHTML = "<div class='contentSizeWrapper'>" +
-                                                                       content.innerHTML + "</div><button class='expandPrompt' onclick='return expandSizeWrapper(\""+row.id+"\")' "+
-                                                                       "href='#'>" + __("Click to expand article") + "</button>";
+                                               if (c_inner && c_inter &&
+                                                       row.offsetHeight >= _shorten_expanded_threshold * window.innerHeight) {
 
-                                                       }
+                                                       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>";
                                                }
                                        }
                                }, 150);