diff --git a/CHANGELOG.md b/CHANGELOG.md index fabd490..2b39bf3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +- Fixed: ``currentUrlFullReload`` option now works +- Fixed: ``this.reload`` is now a Function + ([#65](https://github.com/MoOx/pjax/issues/65)) + # 0.2.2 - 2016-03-12 - Fixed: added back standalone version in `./pjax.js` diff --git a/example/example.js b/example/example.js index 9f62b32..9441179 100644 --- a/example/example.js +++ b/example/example.js @@ -19,8 +19,8 @@ document.addEventListener("pjax:success", function() { document.addEventListener("DOMContentLoaded", function() { var pjax = new Pjax({ - selectors: [".body"] + selectors: [".body"], + // currentUrlFullReload: true, }) console.log("Pjax initialized.", pjax) }) - diff --git a/example/index.html b/example/index.html index 806338f..8e259b9 100644 --- a/example/index.html +++ b/example/index.html @@ -9,7 +9,9 @@