@braze/web-sdk
Version:
Braze SDK for web sites and other JS platforms.
14 lines (13 loc) • 471 B
JavaScript
import r, { OPTIONS as q } from "../../managers/braze-instance.js";
export function loadFontAwesome() {
if (r.ee(q.Na)) return;
const e = "https://use.fontawesome.com/7f85a56ba4.css";
if (
!(null !== document.querySelector('link[rel=stylesheet][href="' + e + '"]'))
) {
const t = document.createElement("link");
t.setAttribute("rel", "stylesheet"),
t.setAttribute("href", e),
document.getElementsByTagName("head")[0].appendChild(t);
}
}