Created
November 29, 2023 03:56
-
-
Save mpr0xy/1a4dda5be4c4185565eb7bae0993f667 to your computer and use it in GitHub Desktop.
latest7daysMasteredWordsCountByDay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getScrollTop() { | |
var scroll_top = 0 | |
if (document.documentElement && document.documentElement.scrollTop) { | |
scroll_top = document.documentElement.scrollTop | |
} else if (document.body) { | |
scroll_top = document.body.scrollTop | |
} | |
return scroll_top | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment