Opt in to manual scroll restoration in browsers that support it #119

Merged
robinnorth merged 1 commits from feature/scroll-restoration into master 2018-01-29 09:27:51 -05:00
Showing only changes of commit 8718da35c6 - Show all commits

View File

@@ -25,6 +25,10 @@ var Pjax = function(options) {
parseOptions.apply(this,[options])
this.log("Pjax options", this.options)
if (this.options.scrollRestoration && "scrollRestoration" in history) {
history.scrollRestoration = "manual"
}
this.maxUid = this.lastUid = newUid()
this.parseDOM(document)