diff options
| author | taehoon <th.dev91@gmail.com> | 2019-04-29 13:53:21 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-04-29 13:53:21 -0400 |
| commit | a793835566d478503f4cadf7970ad62476dd75ac (patch) | |
| tree | b2fc2f150755c1d5be1fe9d356f39342bc4d4a5f | |
| parent | ab19669bf1470f1e2dfe35cb17e3f748edf4c2d2 (diff) | |
add a comment
| -rw-r--r-- | src/components/exporter/exporter.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/exporter/exporter.js b/src/components/exporter/exporter.js index 2ae9492c..8f507416 100644 --- a/src/components/exporter/exporter.js +++ b/src/components/exporter/exporter.js @@ -38,6 +38,7 @@ const Exporter = { document.body.appendChild(fileToDownload) fileToDownload.click() document.body.removeChild(fileToDownload) + // Add delay before hiding processing state since browser takes some time to handle file download setTimeout(() => { this.processing = false }, 2000) }) } |
