diff options
Diffstat (limited to 'client/splash/modal.js')
| -rw-r--r-- | client/splash/modal.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/splash/modal.js b/client/splash/modal.js new file mode 100644 index 00000000..d5a63d75 --- /dev/null +++ b/client/splash/modal.js @@ -0,0 +1,10 @@ + +export function open() { + const el = document.querySelector('.about') + el.classList.add('open') +} + +export function close() { + const el = document.querySelector('.about') + el.classList.remove('open') +} |
