From 6c02842741a3a554ee92d3fc016e2a0f4d69bafd Mon Sep 17 00:00:00 2001 From: Ix-Prebid-Support Date: Thu, 29 Oct 2020 11:00:18 -0400 Subject: [PATCH 1/2] adding detectMissingSizes feature toggle --- dev-docs/bidders/indexExchange.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/dev-docs/bidders/indexExchange.md b/dev-docs/bidders/indexExchange.md index 5ed73f868a..39dd483b2d 100644 --- a/dev-docs/bidders/indexExchange.md +++ b/dev-docs/bidders/indexExchange.md @@ -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: true + } + } + }); +``` + ### 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. From 8fa582105a1e8777b5ad222361c6388f139d6ed0 Mon Sep 17 00:00:00 2001 From: Ix-Prebid-Support Date: Thu, 29 Oct 2020 11:02:53 -0400 Subject: [PATCH 2/2] cfg example update --- dev-docs/bidders/indexExchange.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/indexExchange.md b/dev-docs/bidders/indexExchange.md index 39dd483b2d..7b4b30f128 100644 --- a/dev-docs/bidders/indexExchange.md +++ b/dev-docs/bidders/indexExchange.md @@ -320,7 +320,7 @@ pbjs.setBidderConfig({ bidders: ["ix"], config: { ix: { - detectMissingSizes: true + detectMissingSizes: false } } });