5 lines
207 B
TypeScript
5 lines
207 B
TypeScript
export const turnOnAnimations = () =>
|
|
document.body.parentElement.setAttribute('animations', 'on');
|
|
|
|
export const turnOffAnimations = () =>
|
|
document.body.parentElement.setAttribute('animations', 'off');
|