You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add HTML5 video support param to bid requests
* Use const instead of var for consistency
* Update supported sizes
- Default size returned changed from 0x0 to 1x1 to support PrebidServer
- Now will always respect the bid sizes supported when configured
Co-authored-by: Josh Becker <[email protected]>
* Update maintainer contact email
* Support Prebid.js User ID module
- Add support for Unified ID solution of User ID module by
checking for `bidRequest.userId.tdid` param in `buildRequests`
method of Sharethrough's adapter
- Update specs, maintain 80%+ code coverage
* Update logic for changing userAgent string in tests
* Add 3 pbjs callbacks to the adapter
* Add comments on empty implementations
* Update Sharethrough endpoint
* Add logic to detect safeframe
* Remove console.log statements
Fix issue with clientjs detection
Small refactors (linting)
Co-authored-by: Josh Becker <[email protected]>
* Continue work on safeframe detection spec
Co-authored-by: Josh Becker <[email protected]>
* [WIP]
* update version of sharethrough adapter from 3.0.1 to 3.1.0
* create sharethroughInternal const in adapter so that we can properly stub methods for testing, and utilize utility functions
* rename safeframe detection and iframe JS tag insertion code
* Finish iframe handler specs
Refactor spec file
* Change method of detecting whether locked in a frame or not
* Add logic to detect safeframe
* Remove console.log statements
Fix issue with clientjs detection
Small refactors (linting)
Co-authored-by: Josh Becker <[email protected]>
* Continue work on safeframe detection spec
Co-authored-by: Josh Becker <[email protected]>
* [WIP]
* update version of sharethrough adapter from 3.0.1 to 3.1.0
* create sharethroughInternal const in adapter so that we can properly stub methods for testing, and utilize utility functions
* rename safeframe detection and iframe JS tag insertion code
* Finish iframe handler specs
Refactor spec file
* Change method of detecting whether locked in a frame or not
@@ -267,7 +311,7 @@ describe('sharethrough adapter spec', function () {
267
311
});
268
312
});
269
313
270
-
it('returns a correctly parsed out response with explicitly defined size when strData.stayInIframe is true and strData.iframeSize is provided',function(){
314
+
it('returns a correctly parsed out response with explicitly defined size when strData.skipIframeBusting is true and strData.iframeSize is provided',function(){
@@ -281,7 +325,7 @@ describe('sharethrough adapter spec', function () {
281
325
});
282
326
});
283
327
284
-
it('returns a correctly parsed out response with explicitly defined size when strData.stayInIframe is false and strData.sizes contains [0, 0] only',function(){
328
+
it('returns a correctly parsed out response with explicitly defined size when strData.skipIframeBusting is false and strData.sizes contains [0, 0] only',function(){
@@ -295,7 +339,7 @@ describe('sharethrough adapter spec', function () {
295
339
});
296
340
});
297
341
298
-
it('returns a correctly parsed out response with explicitly defined size when strData.stayInIframe is false and strData.sizes contains multiple sizes',function(){
342
+
it('returns a correctly parsed out response with explicitly defined size when strData.skipIframeBusting is false and strData.sizes contains multiple sizes',function(){
0 commit comments