prevent scrollTo from being converted from false to 0

In the loadUrl function there is an explicit check for false as a means to disable the scrollTo behavior however if the scrollTo option is passed to the constructor as false the gaud statement was converting false to 0.
This commit is contained in:
Isaac Gierard
2014-11-18 14:45:50 -08:00
parent 1d087e8b00
commit ea7d1d2fce

View File

@@ -26,7 +26,7 @@ var Pjax = function(options) {
ga("send", "pageview", {page: options.url, title: options.title})
}
}
this.options.scrollTo = this.options.scrollTo || 0
this.options.scrollTo = (typeof this.options.scrollTo === 'undefined') ? 0 : this.options.scrollTo;
this.options.debug = this.options.debug || false
this.maxUid = this.lastUid = newUid()