mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-10-30 05:59:32 +00:00
16 lines
411 B
JavaScript
16 lines
411 B
JavaScript
|
|
function loadES5() {
|
|
var el = document.createElement('script');
|
|
el.src = '/api/hassio/app/frontend_es5/entrypoint--6PDbD45dS8.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-Rzm-3XAKFKI.js')")();
|
|
} catch (err) {
|
|
loadES5();
|
|
}
|
|
}
|
|
|