paginator progress bar

v1.18.x
Julian Lam 11 years ago
parent d7c0e1c62e
commit 86b019ec89

@ -783,10 +783,12 @@ define(function() {
var windowHeight = jQuery(window).height();
var scrollTop = jQuery(window).scrollTop();
var scrollBottom = scrollTop + windowHeight;
var progressBar = $('.progress-bar');
if (scrollTop < 50 && Topic.postCount > 1) {
localStorage.removeItem("topic:" + tid + ":bookmark");
pagination.innerHTML = '0 out of ' + Topic.postCount;
progressBar.width(0);
return;
}
@ -813,6 +815,8 @@ define(function() {
}
pagination.innerHTML = this.postnumber + ' out of ' + Topic.postCount;
console.log((this.postnumber / Topic.postCount * 100) + '%');
progressBar.width((this.postnumber / Topic.postCount * 100) + '%');
}
});

@ -141,6 +141,9 @@
<span id="pagination"></span>
<i class="fa fa-chevron-down pointer"></i>
</a>
<div class="progress-container">
<div class="progress-bar"></div>
</div>
</li>
</ul>
</div>

Loading…
Cancel
Save