-
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
Size Bugfix #2414
Size Bugfix #2414
Conversation
# Conflicts: # integrationExamples/gpt/hello_world.html # modules/quantumBidAdapter.js # package.json # test/spec/modules/quantumBidAdapter_spec.js
Please review. Thank you. |
modules/quantumBidAdapter.js
Outdated
@@ -104,7 +104,8 @@ export const spec = { | |||
bid.sync = serverBody.sync; | |||
if (bidRequest.renderMode && bidRequest.renderMode === 'banner') { | |||
bid.width = 300; | |||
bid.height = 225; | |||
bid.height = 250; |
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.
Are you sure you want these height/width values to be hard-coded like this? Wouldn't it be more ideal to read from the bid response object? I thought I saw some height/width params in the response from the server, so I wanted to confirm on this point.
You're right. removed response hardcoded sizes. Thank you. |
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.
LGTM
Type of change
Description of change