summaryrefslogtreecommitdiff
path: root/js/Headlines.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-03-16 22:09:01 +0300
committerAndrew Dolgov <[email protected]>2021-03-16 22:09:01 +0300
commit0f5fd9ea13f9881698fd29333aa3e5f4acbf7bd3 (patch)
tree170bcfc8b89c333125e57c21a7794991b1777827 /js/Headlines.js
parent32c080bec08ebc37d3128c07d5c5f526b8871e08 (diff)
use svg icon for headlines loadmore prompt
Diffstat (limited to 'js/Headlines.js')
-rwxr-xr-xjs/Headlines.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/Headlines.js b/js/Headlines.js
index 07796813a..2e19d54f2 100755
--- a/js/Headlines.js
+++ b/js/Headlines.js
@@ -351,8 +351,7 @@ const Headlines = {
// invoke lazy load if last article in buffer is nearly visible OR is active
if (Article.getActive() == last_row.getAttribute("data-article-id") || last_row.offsetTop - 250 <= container.scrollTop + container.offsetHeight) {
- hsp.innerHTML = "<span class='loading'><img src='images/indicator_tiny.gif'> " +
- __("Loading, please wait...") + "</span>";
+ hsp.innerHTML = `<span class='text-muted text-small text-center'><img class="icon-three-dots" src="${App.getInitParam('icon_three_dots')}"> ${__("Loading, please wait...")}</span>`;
Headlines.loadMore();
return;