1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2026-05-18 05:38:53 +01:00
Files
supervisor/supervisor/api/panel/entrypoint.js
T
2021-10-20 11:01:53 +02:00

16 lines
405 B
JavaScript

function loadES5() {
var el = document.createElement('script');
el.src = '/api/hassio/app/frontend_es5/entrypoint.1b313217.js';
document.body.appendChild(el);
}
if (/.*Version\/(?:11|12)(?:\.\d+)*.*Safari\//.test(navigator.userAgent)) {
loadES5();
} else {
try {
new Function("import('/api/hassio/app/frontend_latest/entrypoint.323ce8e7.js')")();
} catch (err) {
loadES5();
}
}