summaryrefslogtreecommitdiff
path: root/js/Article.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-03-16 21:40:20 +0300
committerAndrew Dolgov <[email protected]>2021-03-16 21:40:20 +0300
commit7a1e1630d835f6b3ca4b8359076d0188493a1763 (patch)
treea4a088ddbd57098b5e830cb1f9fc9beecd6e45b9 /js/Article.js
parent92f859add2f48254c09df44c95385f2837032466 (diff)
use svg icon for packed article placeholders
Diffstat (limited to 'js/Article.js')
-rw-r--r--js/Article.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/Article.js b/js/Article.js
index 4388b41e6..5f882a59f 100644
--- a/js/Article.js
+++ b/js/Article.js
@@ -283,7 +283,9 @@ const Article = {
row.setAttribute("data-content", row.getAttribute("data-content-original"));
row.removeAttribute("data-content-original");
- row.querySelector(".content-inner").innerHTML = "&nbsp;";
+ row.querySelector(".content-inner").innerHTML = `<div class="text-center">
+ <img class="icon-unpack-pending" src="${App.getInitParam('icon_three_dots')}">
+ </div>`
}
},
view: function (id, no_expand) {