We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 035b400 commit 72e7ecdCopy full SHA for 72e7ecd
src/client/scripts/private/services/styles.js
@@ -16,8 +16,8 @@ const StylesService = {
16
if (document.getElementById(ID)) return;
17
const styleElm = document.createElement('style');
18
styleElm.id = ID;
19
+ styleElm.textContent = STYLES;
20
document.head.appendChild(styleElm);
- styleElm.appendChild(document.createTextNode(STYLES));
21
}
22
};
23
0 commit comments