2022-01-13 14:01:42 -08:00
|
|
|
import cheet from 'cheet.js';
|
|
|
|
|
|
|
|
export default (): void => {
|
|
|
|
cheet('up up down down left right left right b a', () => {
|
|
|
|
document.body.classList.add('fa-spin');
|
|
|
|
|
2023-10-20 15:28:50 -07:00
|
|
|
Array.from(document.querySelectorAll('.question__text')).forEach((element: HTMLElement) => {
|
2022-01-13 14:01:42 -08:00
|
|
|
element.innerText = ':^)';
|
|
|
|
});
|
|
|
|
});
|
2023-10-20 15:28:50 -07:00
|
|
|
}
|