Skip to content

Instantly share code, notes, and snippets.

@vincentorback
Created January 8, 2017 11:36
Show Gist options
  • Save vincentorback/05f5ff72e6780eee7fcf53a18c297055 to your computer and use it in GitHub Desktop.
Save vincentorback/05f5ff72e6780eee7fcf53a18c297055 to your computer and use it in GitHub Desktop.
getScrollPosition.js
/**
* Get scroll position
* @param {Object} rootElement
* @return {Object}
*/
export function getScrollPosition (rootElement) {
return {
y: rootElement ? rootElement.scrollTop : window.pageYOffset,
x: rootElement ? rootElement.scrollLeft : window.pageXOffset
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment