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 March 18, 2021 10:20
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)))))