Skip to content

Commit a58451b

Browse files
authored
Merge branch 'healthAudit' into develop
2 parents ecbff75 + 1c8f4e0 commit a58451b

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [2.1.1] - UNRELEASED
88
### Added
9+
- Indexeddb additions to the userdata class
10+
11+
### Changed
12+
- update NPM modules to remove security vulnerabilities
913
- This CHANGELOG
1014
- Fullscreen Plugin. The ability to add in a fullscreen button within container
1115
- Fullscreen Plugin Automated Testing
1216
- Fullscreen Plugin Documentation
1317
- Indexeddb additions to the userdata class
14-
### Changed
1518
- update NPM modules to remove security vulnerabilities

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,6 @@ savedData.IDBReadAll('storeName', 5);
552552

553553

554554

555-
```
556555
All other methods will work the same as the documentation [here](https://github.com/SpringRoll/SpringRoll/tree/main/src/state#userdata);
557556

558557

dist/SpringRoll-Container-umd.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/plugins/UserDataPlugin.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ export class UserDataPlugin extends BasePlugin {
5151
this.client.on('IDBClose', this.onIDBClose);
5252
this.client.on('IDBGetVersion', this.onIDBGetVersion);
5353
this.client.on('IDBDeleteDB', this.onIDBDeleteDB);
54-
5554
}
5655

5756
/**
@@ -83,8 +82,8 @@ export class UserDataPlugin extends BasePlugin {
8382
* @method onUserDataWrite
8483
* @private
8584
* @param {string} type The type of listener for bellhop to send to
86-
* @param {string} name The name for the record. This is what is used to read or remove the record
87-
* @param {object | string} value The data object with the name ond value for the record
85+
* @param {string} data.name The name for the record. This is what is used to read or remove the record
86+
* @param {object | string} data.value The data object with the data and value for the record
8887
*/
8988
onUserDataWrite({type, data: { name, value } }) {
9089

0 commit comments

Comments
 (0)