Files
rough-notation/src/keyframes.ts
Preet Shihn 13a375bf78 .
2020-05-26 20:50:15 -07:00

13 lines
365 B
TypeScript

export function ensureKeyframes() {
if (!(window as any).__rough_notation_keyframe_styles) {
const style = (window as any).__rough_notation_keyframe_styles = document.createElement('style');
style.textContent = `
@keyframes rough-notation-dash {
to {
stroke-dashoffset: 0;
}
}
`;
document.head.appendChild(style);
}
}