Skip to content

Commit

Permalink
fix progressbar
Browse files Browse the repository at this point in the history
  • Loading branch information
vladmandic authored Feb 25, 2023
1 parent 0cc0ee1 commit ed43a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/progressbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function requestProgress(id_task, progressbarContainer, gallery, atEnd, onProgre

var divProgress = document.createElement('div')
divProgress.className='progressDiv'
divProgress.style.display = opts.show_progressbar ? "" : "none"
divProgress.style.display = opts.show_progressbar ? "block" : "none"
var divInner = document.createElement('div')
divInner.className='progress'

Expand Down

0 comments on commit ed43a82

Please sign in to comment.