Add the Scroll module.

beta
Philippe Pittoli 2024-11-13 02:47:17 +01:00
parent 89f306ed47
commit fa988a2cca
1 changed files with 15 additions and 0 deletions

15
src/Scroll.purs Normal file
View File

@ -0,0 +1,15 @@
module Scroll where
import Prelude
import Effect (Effect)
import Effect.Console (log)
import Halogen as H
import Web.HTML (window)
import Web.HTML.Window (scroll)
scrollToTop :: Effect Unit
scrollToTop = do
H.liftEffect do
w <- window
scroll 0 0 w
log "Scrolled to top of the page"