We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23fc456 commit 240caddCopy full SHA for 240cadd
static/examples/cstg-prebid-example/index.html
@@ -33,13 +33,12 @@
33
34
$('#targeted_advertising_ready').text(uid2 ? 'yes' : 'no');
35
36
- // Handle opt-out case
37
if (isOptedOut) {
38
$('#advertising_token').text('This email has opted out.');
39
$('#login_form').hide();
40
$('#clear_storage_form').show();
41
} else {
42
- $('#advertising_token').text(uid2 && !uid2.optout ? String(uid2.id) : uid2 && uid2.optout ? 'This email has opted out.' : '');
+ $('#advertising_token').text(uid2 ? String(uid2.id) : '');
43
if (!uid2) {
44
$('#login_form').show();
45
$('#clear_storage_form').hide();
0 commit comments