({ action = 'Updating Pro', title, subText } = {})
| 69 | } |
| 70 | |
| 71 | function startProBundleProgress({ action = 'Updating Pro', title, subText } = {}) { |
| 72 | return startTransferProgress({ |
| 73 | action, |
| 74 | title: title || action, |
| 75 | subText: subText || 'Please keep this tab open.', |
| 76 | itemCount: 0, |
| 77 | bytesKnown: false |
| 78 | }); |
| 79 | } |
| 80 | |
| 81 | function finishProBundleProgress(job, ok, error = '') { |
| 82 | if (!job) return; |
no test coverage detected