Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Synacormedia] Config override for site.domain property #5885

Merged
merged 33 commits into from
Oct 23, 2020
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
25c5ad3
CAP-1614 - updated docs to show correct size for banner and some othe…
Feb 5, 2020
b6dfbc9
CAP-1636 support schain object in prebid
Feb 6, 2020
f430418
Merge pull request #15 in SA/prebid from CAP-1614 to master
Feb 7, 2020
d6932f3
Merge pull request #14 in SA/prebid from CAP-1636 to master
Feb 7, 2020
9359953
Merge branch 'master' of https://github.com/prebid/Prebid.js
Feb 13, 2020
c934f2d
CAP-1636 updated the review comments
Feb 13, 2020
1e489b0
Merge pull request #16 in SA/prebid from CAP-1636 to master
Feb 18, 2020
144ba4a
Merge branch 'master' of https://github.com/prebid/Prebid.js
Jun 4, 2020
a26077f
CAP-1849 - split up banner and video impressions to use format
Jun 5, 2020
a70f560
Merge pull request #18 in SA/prebid from CAP-1849 to master
Jun 10, 2020
585573d
Merge branch 'master' of https://github.com/prebid/Prebid.js
Jun 22, 2020
30378e8
Merge branch 'master' of https://github.com/prebid/Prebid.js
Jul 7, 2020
c70d8fc
CAP-1879 - added adapter support for consent management module
Jul 7, 2020
bcf6bc3
Merge pull request #19 in SA/prebid from CAP-1879 to master
Jul 8, 2020
cd80003
Merge branch 'master' of https://github.com/prebid/Prebid.js
Jul 16, 2020
fa60070
CAP-1879 - updates for pr
Jul 21, 2020
801603e
CAP-1879 - remove unneeded checks
Jul 21, 2020
d45d6fc
CAP-1920 - fixed size bug
Jul 23, 2020
7e27c52
CAP-1920 - update tests and banner
Jul 23, 2020
6fa31a1
CAP-1920 - fix a comparison, and height setting
Jul 27, 2020
0658a28
Merge pull request #20 in SA/prebid from CAP-1920 to master
Jul 27, 2020
39e26ff
Merge branch 'master' of https://github.com/prebid/Prebid.js
Jul 30, 2020
476ed93
Merge branch 'master' of https://github.com/prebid/Prebid.js
Jul 31, 2020
2533c8c
Merge branch 'master' of https://github.com/prebid/Prebid.js
Aug 13, 2020
e4a65bf
Merge branch 'master' of https://github.com/prebid/Prebid.js
Aug 21, 2020
0cf00fd
CAP-1966: Fix video impid parsing
Aug 21, 2020
74f7c58
CAP-1966: Set hostname based on seat
Aug 24, 2020
21cf18f
Merge pull request #21 in SA/prebid from CAP-1966 to master
Aug 26, 2020
d5cbad3
CAP-1966 - update unit test
Aug 26, 2020
b0ccc21
CAP-1992 - use get config for site.domain
Sep 30, 2020
76f0e64
Merge pull request #22 in SA/prebid from CAP-1992 to master
Oct 2, 2020
dece358
Merge branch 'master' of https://github.com/prebid/Prebid.js
Oct 13, 2020
7eec834
Merge branch 'master' of https://github.com/prebid/prebid.js
s-laufer Oct 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/synacormediaBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const spec = {
const openRtbBidRequest = {
id: bidderRequest.auctionId,
site: {
domain: location.hostname,
domain: config.getConfig('publisherDomain') || location.hostname,
page: refererInfo.referer,
ref: document.referrer
},
Expand Down