23 lines
668 B
JavaScript
23 lines
668 B
JavaScript
exports.VISIBILITYCHANGE = 'visibilityChange';
|
|
exports.ENTERVIEWPORT = 'enterViewport';
|
|
exports.FULLYENTERVIEWPORT = 'fullyEnterViewport';
|
|
exports.EXITVIEWPORT = 'exitViewport';
|
|
exports.PARTIALLYEXITVIEWPORT = 'partiallyExitViewport';
|
|
exports.LOCATIONCHANGE = 'locationChange';
|
|
exports.STATECHANGE = 'stateChange';
|
|
|
|
exports.eventTypes = [
|
|
exports.VISIBILITYCHANGE,
|
|
exports.ENTERVIEWPORT,
|
|
exports.FULLYENTERVIEWPORT,
|
|
exports.EXITVIEWPORT,
|
|
exports.PARTIALLYEXITVIEWPORT,
|
|
exports.LOCATIONCHANGE,
|
|
exports.STATECHANGE
|
|
];
|
|
|
|
exports.isOnServer = (typeof window === 'undefined');
|
|
exports.isInBrowser = !exports.isOnServer;
|
|
|
|
exports.defaultOffsets = {top: 0, bottom: 0};
|