Skip to content

Commit

Permalink
Updated Ahoy.js to 0.4.2 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Feb 23, 2023
1 parent 42a5450 commit 02d2c54
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.2.1 (unreleased)

- Updated Ahoy.js to 0.4.2

## 4.2.0 (2023-02-07)

- Added primary key type to generated migration
Expand Down
4 changes: 2 additions & 2 deletions vendor/assets/javascripts/ahoy.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Ahoy.js v0.4.1
* Ahoy.js v0.4.2
* Simple, powerful JavaScript analytics
* https://github.com/ankane/ahoy.js
* MIT License
Expand Down Expand Up @@ -380,7 +380,7 @@
}

for (var key in config.visitParams) {
if (Object.prototype.hasOwnProperty.call(config.visitParam, key)) {
if (Object.prototype.hasOwnProperty.call(config.visitParams, key)) {
data[key] = config.visitParams[key];
}
}
Expand Down

0 comments on commit 02d2c54

Please sign in to comment.