Conditions | 4 |
Paths | 6 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /* global dataFlyntFeatureGoogleAnalytics, Cookies */ |
||
7 | export function optOut () { |
||
8 | let confirmOptout = false |
||
|
|||
9 | |||
10 | if (data.confirm) { |
||
11 | confirmOptout = window.confirm(data.confirm) |
||
12 | } else { |
||
13 | confirmOptout = true |
||
14 | } |
||
15 | |||
16 | if (confirmOptout) { |
||
17 | window['ga-disable-' + data.gaId] = true |
||
18 | if (data.success) { |
||
19 | window.alert(data.success) |
||
20 | } |
||
21 | setOptoutCookie() |
||
22 | } |
||
23 | } |
||
24 | |||
36 |