1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 02:55:55 +00:00

progressbar fixes

This commit is contained in:
Andrew Dolgov
2008-05-19 09:12:54 +01:00
parent 9950945175
commit fca95d5f99
2 changed files with 6 additions and 4 deletions

View File

@@ -1674,7 +1674,9 @@ function focus_element(id) {
function loading_set_progress(p) {
try {
if (!Element.visible("overlay")) return;
if (p < last_progress_point || !Element.visible("overlay")) return;
debug("<b>loading_set_progress : " + p + " (" + last_progress_point + ")</b>");
var o = document.getElementById("l_progress_i");