0.2.8
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1,6 +1,9 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
node_modules/
|
node_modules/
|
||||||
|
.nyc_output/
|
||||||
|
.idea/
|
||||||
|
dist/
|
||||||
|
coverage/
|
||||||
tests/scripts/index.html
|
tests/scripts/index.html
|
||||||
pjax.js
|
pjax.js
|
||||||
.nyc_output/
|
|
||||||
pjax.min.js
|
pjax.min.js
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
language: "node_js"
|
language: "node_js"
|
||||||
node_js:
|
node_js:
|
||||||
- "6"
|
- "10"
|
||||||
- "8"
|
|
||||||
# Force Travis to use npm v5
|
|
||||||
# https://github.com/travis-ci/travis-ci/issues/4653#issuecomment-194051953
|
|
||||||
before_install: if [[ `npm -v` != 5* ]]; then npm i -g npm@5; fi
|
|
||||||
|
|||||||
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,3 +1,16 @@
|
|||||||
|
# 0.2.8 - 2019-03-09
|
||||||
|
|
||||||
|
- Fixed: Edge form support.
|
||||||
|
([#178](https://github.com/MoOx/pjax/pull/178) - @robinnorth)
|
||||||
|
- Fixed: Removed keyup event listener for forms.
|
||||||
|
([#184](https://github.com/MoOx/pjax/pull/184) - @BehindTheMath)
|
||||||
|
- Fixed: Bugs in evalScripts().
|
||||||
|
([#186](https://github.com/MoOx/pjax/pull/186) - @BehindTheMath)
|
||||||
|
- Fixed: Handle non-string HTML passed to loadContent().
|
||||||
|
([#200](https://github.com/MoOx/pjax/pull/200) - @BehindTheMath)
|
||||||
|
- Tooling: Switch linting to ESLint and Prettier.
|
||||||
|
([#191](https://github.com/MoOx/pjax/pull/191) - @BehindTheMath)
|
||||||
|
|
||||||
# 0.2.7 - 2018-08-15
|
# 0.2.7 - 2018-08-15
|
||||||
|
|
||||||
- Fixed: Parsing values of option elements in forms.
|
- Fixed: Parsing values of option elements in forms.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "pjax",
|
"name": "pjax",
|
||||||
"version": "0.2.7",
|
"version": "0.2.8",
|
||||||
"description": "Easily enable fast AJAX navigation on any website (using pushState + XHR)",
|
"description": "Easily enable fast AJAX navigation on any website (using pushState + XHR)",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"pjax",
|
"pjax",
|
||||||
|
|||||||
Reference in New Issue
Block a user