2016-12-18 15:53:28 +00:00
|
|
|
/* eslint strict: 0 */
|
2016-10-09 19:14:02 +00:00
|
|
|
"use strict";
|
|
|
|
|
2016-06-07 17:56:49 +00:00
|
|
|
/*
|
|
|
|
* This is a separate file for two reasons:
|
|
|
|
* 1. CSP policy does not allow inline javascript
|
|
|
|
* 2. It has to be a small javascript executed before all other scripts,
|
|
|
|
* so that the timeout can be triggered while slow JS is loading
|
|
|
|
*/
|
|
|
|
|
|
|
|
setTimeout(function() {
|
|
|
|
var element = document.getElementById("loading-slow");
|
|
|
|
|
|
|
|
if (element) {
|
|
|
|
element.style.display = "block";
|
|
|
|
}
|
|
|
|
}, 5000);
|
2017-05-09 13:12:12 +00:00
|
|
|
|
|
|
|
document.getElementById("loading-slow-reload").addEventListener("click", function() {
|
|
|
|
location.reload();
|
|
|
|
});
|