1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-05-15 12:40:19 +01:00
Files
frontend/src/html/_preload_roboto.html.template
T
2020-10-14 22:20:39 +02:00

17 lines
556 B
Plaintext

<script>
if (navigator.userAgent.indexOf("Android") === -1 &&
navigator.userAgent.indexOf("CrOS") === -1) {
function _pf(src, type) {
var el = document.createElement("link");
el.rel = "preload";
el.as = "font";
el.type = "font/woff2";
el.href = src;
el.crossOrigin = "anonymous";
document.head.appendChild(el);
}
_pf("/static/fonts/roboto/Roboto-Regular.woff2");
_pf("/static/fonts/roboto/Roboto-Medium.woff2");
}
</script>