1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-02-27 13:17:29 +00:00
Files
frontend/src/html/_script_load_es5.html.template
2023-08-15 19:48:51 +02:00

18 lines
420 B
Plaintext

<script>
(function() {
if (!window.latestJS) {
<% if (useRollup) { %>
_ls("/static/js/s.min.js").onload = function() {
<% for (const entry of es5EntryJS) { %>
System.import("<%= entry %>");
<% } %>
}
<% } else { %>
<% for (const entry of es5EntryJS) { %>
_ls("<%= entry %>", true);
<% } %>
<% } %>
}
})();
</script>