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();
|
|
|
|
});
|
2017-12-01 18:04:50 +00:00
|
|
|
|
|
|
|
window.g_LoungeErrorHandler = function LoungeErrorHandler(error) {
|
|
|
|
var title = document.getElementById("loading-title");
|
|
|
|
title.textContent = "An error has occured";
|
|
|
|
|
|
|
|
title = document.getElementById("loading-page-message");
|
|
|
|
title.textContent = "An error has occured that prevented the client from loading correctly.";
|
|
|
|
|
2017-12-05 13:17:31 +00:00
|
|
|
var summary = document.createElement("summary");
|
|
|
|
summary.textContent = "More details";
|
|
|
|
|
|
|
|
if (error instanceof ErrorEvent) {
|
|
|
|
error = error.message + "\n\n" + error.stack + "\n\nView developer tools console for more information and a better stacktrace.";
|
|
|
|
}
|
|
|
|
|
|
|
|
var data = document.createElement("pre");
|
|
|
|
data.contentEditable = true;
|
|
|
|
data.textContent = error;
|
|
|
|
|
|
|
|
var details = document.createElement("details");
|
|
|
|
details.appendChild(summary);
|
|
|
|
details.appendChild(data);
|
|
|
|
title.parentNode.insertBefore(details, title.nextSibling);
|
2017-12-01 18:04:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
window.addEventListener("error", window.g_LoungeErrorHandler);
|