summaryrefslogtreecommitdiff
path: root/js/Article.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-03-17 19:28:20 +0300
committerAndrew Dolgov <[email protected]>2021-03-17 19:28:20 +0300
commit968270ed486a3f8330520b95b142908758ad8bd7 (patch)
treefd3cf58b64219443b33184200eae9b29508054f3 /js/Article.js
parentdb0315e596576a3e516a4ae774263dedefd92f73 (diff)
fix excessive CPU usage on linux chromium caused by animated SVG icons
Diffstat (limited to 'js/Article.js')
-rw-r--r--js/Article.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/Article.js b/js/Article.js
index 5f882a59f..16abfbfee 100644
--- a/js/Article.js
+++ b/js/Article.js
@@ -283,8 +283,8 @@ const Article = {
row.setAttribute("data-content", row.getAttribute("data-content-original"));
row.removeAttribute("data-content-original");
- row.querySelector(".content-inner").innerHTML = `<div class="text-center">
- <img class="icon-unpack-pending" src="${App.getInitParam('icon_three_dots')}">
+ row.querySelector(".content-inner").innerHTML = `<div class="text-center text-muted">
+ ${__("Loading, please wait...")}
</div>`
}
},