Skip to content
This repository was archived by the owner on May 26, 2025. It is now read-only.

Commit c26c223

Browse files
committed
0.2.8
1 parent 3b3f4d7 commit c26c223

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
.DS_Store
22
node_modules/
3+
.nyc_output/
4+
.idea/
5+
dist/
6+
coverage/
37
tests/scripts/index.html
48
pjax.js
5-
.nyc_output/
69
pjax.min.js

.travis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
language: "node_js"
22
node_js:
3-
- "6"
4-
- "8"
5-
# Force Travis to use npm v5
6-
# https://github.com/travis-ci/travis-ci/issues/4653#issuecomment-194051953
7-
before_install: if [[ `npm -v` != 5* ]]; then npm i -g npm@5; fi
3+
- "10"
4+

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 0.2.8 - 2019-03-09
2+
3+
- Fixed: Edge form support.
4+
([#178](https://github.com/MoOx/pjax/pull/178) - @robinnorth)
5+
- Fixed: Removed keyup event listener for forms.
6+
([#184](https://github.com/MoOx/pjax/pull/184) - @BehindTheMath)
7+
- Fixed: Bugs in evalScripts().
8+
([#186](https://github.com/MoOx/pjax/pull/186) - @BehindTheMath)
9+
- Fixed: Handle non-string HTML passed to loadContent().
10+
([#200](https://github.com/MoOx/pjax/pull/200) - @BehindTheMath)
11+
- Tooling: Switch linting to ESLint and Prettier.
12+
([#191](https://github.com/MoOx/pjax/pull/191) - @BehindTheMath)
13+
114
# 0.2.7 - 2018-08-15
215

316
- Fixed: Parsing values of option elements in forms.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pjax",
3-
"version": "0.2.7",
3+
"version": "0.2.8",
44
"description": "Easily enable fast AJAX navigation on any website (using pushState + XHR)",
55
"keywords": [
66
"pjax",

0 commit comments

Comments
 (0)