diff --git a/layout/_partial/footer.ejs b/layout/_partial/footer.ejs
index 878cdcc..ee6041c 100644
--- a/layout/_partial/footer.ejs
+++ b/layout/_partial/footer.ejs
@@ -7,12 +7,12 @@
<% if (theme.website_count.busuanzi_count.site_uv) { %>
-
+
<%- __('site_uv') %>
<% } %>
<% if (theme.website_count.busuanzi_count.site_pv) { %>
-
+
<%- __('site_pv') %>
<% } %>
diff --git a/source/js/utils.js b/source/js/utils.js
index 1380224..7187301 100644
--- a/source/js/utils.js
+++ b/source/js/utils.js
@@ -21,9 +21,7 @@ ILS.utils = {
const ProgressPercent = (scrollTop / (scrollHeight - clientHeight) * 100).toFixed(3);
if (ILS.utils.headerProgress_dom) {
- // ILS.utils.headerProgress_dom.style.display = percent === '0' ? 'none' : 'block';
ILS.utils.headerProgress_dom.style.visibility = percent === '0' ? 'hidden' : 'visible';
-
ILS.utils.headerProgress_dom.style.width = `${ProgressPercent}%`;
}