You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
511 B
18 lines
511 B
10 years ago
|
"use strict";
|
||
|
|
||
|
var invariant = require("react/lib/invariant");
|
||
|
var canUseDOM = require("react/lib/ExecutionEnvironment").canUseDOM;
|
||
|
|
||
|
/**
|
||
|
* Returns the current scroll position of the window as { x, y }.
|
||
|
*/
|
||
|
function getWindowScrollPosition() {
|
||
|
invariant(canUseDOM, "Cannot get current scroll position without a DOM");
|
||
|
|
||
|
return {
|
||
|
x: window.pageXOffset || document.documentElement.scrollLeft,
|
||
|
y: window.pageYOffset || document.documentElement.scrollTop
|
||
|
};
|
||
|
}
|
||
|
|
||
|
module.exports = getWindowScrollPosition;
|