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 d4e25e2 commit af66f1fCopy full SHA for af66f1f
modules/emx_digitalBidAdapter.js
@@ -248,6 +248,22 @@ export const spec = {
248
});
249
}
250
return emxBidResponses;
251
+ },
252
+ getUserSyncs: function (syncOptions) {
253
+ const syncs = [];
254
+ if (syncOptions.iframeEnabled) {
255
+ syncs.push({
256
+ type: 'iframe',
257
+ url: '//biddr.brealtime.com/check.html'
258
+ });
259
+ }
260
+ if (syncOptions.pixelEnabled) {
261
262
+ type: 'image',
263
+ url: '//edba.brealtime.com/'
264
265
266
+ return syncs;
267
268
};
269
registerBidder(spec);
0 commit comments