File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 29
29
$ ( '#login_required' ) . text (
30
30
sdk . isLoginRequired ( ) || sdk . isLoginRequired ( ) === undefined ? 'yes' : 'no'
31
31
) ;
32
+ $ ( `#has_opted_out` ) . text (
33
+ sdk . hasOptedOut ( ) ? 'yes' : 'no'
34
+ ) ;
32
35
$ ( '#update_counter' ) . text ( callbackCounter ) ;
33
36
$ ( '#identity_state' ) . text ( String ( JSON . stringify ( state , null , 2 ) ) ) ;
34
37
@@ -109,6 +112,10 @@ <h1>UID2 Publisher Client-Side Integration Example using UID2 JavaScript SDK</h1
109
112
< td class ="label "> Is Login Required?</ td >
110
113
< td class ="value "> < pre id ="login_required "> </ pre > </ td >
111
114
</ tr >
115
+ < tr >
116
+ < td class ="label "> Has opted out?</ td >
117
+ < td class ="value "> < pre id ="has_opted_out "> </ pre > </ td >
118
+ </ tr >
112
119
< tr >
113
120
< td class ="label "> Identity Updated Counter:</ td >
114
121
< td class ="value "> < pre id ="update_counter "> </ pre > </ td >
You can’t perform that action at this time.
0 commit comments