Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [2.1.6](https://github.com/openmail/system1-cmp/compare/2.1.5...2.1.6) (2021-02-26)

### Refactor

- [x] Fix Monitoring; "category" should be a string not a click event

## [2.1.5](https://github.com/openmail/system1-cmp/compare/2.1.4...2.1.5) (2021-02-26)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "system1-cmp",
"version": "2.1.5",
"version": "2.1.6",
"cmpVersion": 5,
"description": "System1 Consent Management Platform for TCF 1.1 GDPR Compliance",
"scripts": {
Expand Down
6 changes: 5 additions & 1 deletion src/s1/components/banner/bannerSlim.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ export default class BannerSlim extends Component {
debounce.clear();
}

handleContinue = () => {
this.handleAcceptAll( 'acceptAllContinue' );
}

handleClose = () => {
this.handleAcceptAll( 'acceptAllClose' );
}
Expand Down Expand Up @@ -209,7 +213,7 @@ export default class BannerSlim extends Component {
</a>
<a
class={style.continue}
onClick={this.handleAcceptAll}
onClick={this.handleContinue}
style={{
backgroundColor: primaryColor,
borderColor: primaryColor,
Expand Down
6 changes: 5 additions & 1 deletion src/s1/components/banner/bannerStacks.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ export default class BannerStacks extends Component {
debounce.clear();
}

handleContinue = () => {
this.handleAcceptAll( 'acceptAllContinue' );
}

handleClose = () => {
this.handleAcceptAll( 'acceptAllClose' );
}
Expand Down Expand Up @@ -220,7 +224,7 @@ export default class BannerStacks extends Component {
</a>
<a
class={style.continue}
onClick={this.handleAcceptAll}
onClick={this.handleContinue}
style={{
backgroundColor: primaryColor,
borderColor: primaryColor,
Expand Down
6 changes: 5 additions & 1 deletion src/s1/components/banner/bannerVendors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ export default class BannerVendors extends Component {
});
};

handleContinue = () => {
this.handleAcceptAll( 'acceptAllContinue' );
}

handleClose = () => {
this.handleAcceptAll( 'acceptAllClose' );
}
Expand Down Expand Up @@ -164,7 +168,7 @@ export default class BannerVendors extends Component {
</a>
<a
class={style.continue}
onClick={this.handleAcceptAll}
onClick={this.handleContinue}
style={{
backgroundColor: primaryColor,
borderColor: primaryColor,
Expand Down