Skip to content

Instantly share code, notes, and snippets.

View AlbertSnows's full-sized avatar
💭
Livin life

Albert Snow AlbertSnows

💭
Livin life
View GitHub Profile
@nberger
nberger / reagent_infinite_scroll.cljs
Last active May 6, 2024 16:15
Reagent infinite scroll
(ns views.infinite-scroll
(:require
[reagent.core :as r]))
(defn- get-scroll-top []
(if (exists? (.-pageYOffset js/window))
(.-pageYOffset js/window)
(.-scrollTop (or (.-documentElement js/document)
(.-parentNode (.-body js/document))
(.-body js/document)))))