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 e9af5e2 commit af08311Copy full SHA for af08311
modules/emx_digitalBidAdapter.js
@@ -103,6 +103,22 @@ export const spec = {
103
});
104
}
105
return emxBidResponses;
106
+ },
107
+ getUserSyncs: function (syncOptions) {
108
+ const syncs = [];
109
+ if (syncOptions.iframeEnabled) {
110
+ syncs.push({
111
+ type: 'iframe',
112
+ url: '//biddr.brealtime.com/check.html'
113
+ });
114
+ }
115
+ if (syncOptions.pixelEnabled) {
116
117
+ type: 'image',
118
+ url: '//edba.brealtime.com/'
119
120
121
+ return syncs;
122
123
};
124
registerBidder(spec);
0 commit comments