Add "reload page" button when Lounge fails to start.

This commit is contained in:
Niko Bews 2017-05-09 16:12:12 +03:00
parent 45df995d7f
commit cba87582a5
2 changed files with 8 additions and 1 deletions

View file

@ -52,7 +52,10 @@
</div>
<div class="col-xs-12">
<p id="loading-page-message">Loading the app… <a href="http://enable-javascript.com/" target="_blank" rel="noopener">Make sure to have JavaScript enabled.</a></p>
<p id="loading-slow">This is taking longer than it should, there might be connectivity issues.</p>
<div id="loading-slow">
<p>This is taking longer than it should, there might be connectivity issues.</p>
<button id="loading-slow-reload" class="btn">Reload page</button>
</div>
<script async src="js/loading-slow-alert.js"></script>
</div>
</div>

View file

@ -15,3 +15,7 @@ setTimeout(function() {
element.style.display = "block";
}
}, 5000);
document.getElementById("loading-slow-reload").addEventListener("click", function() {
location.reload();
});