Skip to content

Docs update setCookieData examples with correct function #686

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/reference/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -464,30 +464,30 @@ Save custom data into the cookie. Returns `true` if the data was set successfull

```javascript
// First set: true
CookieConsent.setData({
CookieConsent.setCookieData({
value: {id: 21, lang: 'it'}
}); //{id: 21, lang: 'it'}

// Change only the 'id' field: true
CookieConsent.setData({
CookieConsent.setCookieData({
value: {id: 22},
mode: 'update'
}); //{id: 22, lang: 'it'}

// Add a new field: true
CookieConsent.setData({
CookieConsent.setCookieData({
value: {newField: 'newValue'},
mode: 'update'
}); //{id: 22, lang: 'it', newField: 'newValue'}

// Change 'id' to a string value: FALSE
CookieConsent.setData({
CookieConsent.setCookieData({
value: {id: 'hello'},
mode: 'update'
}); //{id: 22, lang: 'it', newField: 'newValue'}

// Overwrite: true
CookieConsent.setData({
CookieConsent.setCookieData({
value: 'overwriteEverything'
}); // 'overwriteEverything'
```
Expand Down