Display an indeterminate progress bar with message.
(message)
| 235 | |
| 236 | /** Display an indeterminate progress bar with message. */ |
| 237 | function showProgress(message) { |
| 238 | progressText.textContent = message; |
| 239 | progressBar.style.display = 'block'; |
| 240 | progressText.style.display = 'block'; |
| 241 | } |
| 242 | |
| 243 | /** Display the indeterminate progress bar. */ |
| 244 | function hideProgress(message) { |