1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-27 12:36:14 +01:00

timeout on safari download page close

This commit is contained in:
Kyle Spearrin 2018-12-03 14:21:38 -05:00
parent d5568cc148
commit 30a32c8c6a

View File

@ -25,6 +25,6 @@ document.addEventListener('DOMContentLoaded', () => {
} }
} }
window.close(); window.setTimeout(() => window.close(), 1500);
} }
}); });