-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Beachfront adapter - add ad unit size #1183
Merged
mkendall07
merged 21 commits into
prebid:master
from
bfmdeploy:update-beachfront-adapter
May 19, 2017
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
f4496ee
Added ad unit size to bid request
e77418e
Merge branch 'master' into update-beachfront-adapter
f392a6c
Fixed lint errors
3b0082b
Added ad unit size to bid request
3c2027a
Add trafficSourceCode + test (#1184)
b2798f4
Prebid 0.23.1 Release
c358ebe
pre release version bump
c73e458
inclusion of popular Nordic ad sizes to default size list (#1168)
cb67cf8
Add PubWise Analytics (#1151)
GLStephen c7a3d8e
add new rp_secure param to rubicon adapter (#1190)
snapwich b68af07
Add type conversion into PrebidServer to handle inconsistent types. (…
21d8a22
Bug fix: bids served by secure creatives does not get pushed into _wi…
canyousayyes bd169bf
Add dynamic bidfloor parameter to Smart Adserver Adapter (#1194)
e8be4ac
Upgrade linters to ESLint with stricter code style (#1111)
matthewlane 73d5bf6
Add Support for DigiTrust in Rubicon Adapter (#1201)
grevory 4f072e3
HIRO Media: Remove batching mechanism and use AJAX instead of JSONP (…
ronenst b025d54
Rename secureCreatives file and lint (#1203)
grevory 95bbfc5
Common user-sync (#1144)
ckbo3hrk 6f4f4d4
updated tag (#1212)
jaiminpanchal27 420d921
Merge branch 'update-beachfront-adapter' of https://github.com/bfmdep…
d4f299c
Changed “bidRequest” to “bid” for clarity
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should still be
bid
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed it to
bidRequest
because it has the parsed width and height properties.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok but doesn't it just return here because
bid.params
doesn't exist?https://github.com/bfmdeploy/Prebid.js/blob/420d921c0db56f06f87bb5004d3ba8dc3f1e4b13/src/adapters/beachfront.js#L46
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bid.params
should exist. I think the confusion here is thatbid
andbidRequest
are referencing the same object. I can revert that line if it makes it more clear.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh right. Yeah that's a bit confusing... I would just make it bid to clear that up
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll merge when you make the change