Skip to content

Commit

Permalink
Fix close splash screen not working
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcnunes committed Jun 5, 2016
1 parent 163ec26 commit 6aad891
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/renderer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@
loadingInner.style.display = 'block';

setTimeout(function () {
document.getElementById('loading').className = 'loading-hidden';
loadingWrapper.className = 'loading-hidden';

setTimeout(function () {
loadingWrapper.remove();
}, 500);
}, 4500);

document.getElementById('loading-signal').remove();
Expand Down

0 comments on commit 6aad891

Please sign in to comment.