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

Adding detect missing sizes feature toggle #2455

Merged
merged 3 commits into from
Nov 5, 2020
Merged
Changes from all commits
Commits
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
21 changes: 21 additions & 0 deletions dev-docs/bidders/indexExchange.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,27 @@ pbjs.setConfig({
});
```

#### The **detectMissingSizes** feature
With a recent update, the IX bid adapter bids on all banner sizes available in an ad unit, if IX is configured for at least one banner size in that ad unit. This default behavior if not required, can be turned off by using the `detectMissingSizes` flag.
```
pbjs.setConfig({
ix: {
detectMissingSizes: false
}
});
```
OR
```
pbjs.setBidderConfig({
bidders: ["ix"],
config: {
ix: {
detectMissingSizes: false
}
}
});
```

### 2. Include `ixBidAdapter` in your build process

When running the build command, include `ixBidAdapter` as a module, as well as `dfpAdServerVideo` if you require video support.
Expand Down