UNPKG

@pageworks/pjax

Version:

Turns any website into a SPA using Fetch and link prefetching.

8 lines (7 loc) 193 B
import PJAX from '../../global'; /** * Scrolls the window to the provided `ScrollPosition` */ export default (scrollTo:PJAX.IScrollPosition)=>{ window.scrollTo(scrollTo.x, scrollTo.y); }