Skip to content

Commit

Permalink
Remove Bidders with Video and Native Demand entries for bidders that …
Browse files Browse the repository at this point in the history
…do not support Prebid 1.X (#1000)
  • Loading branch information
jeanstemp authored Oct 17, 2018
1 parent 80aae83 commit 96bacff
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions dev-docs/bidders.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,11 @@ The following parameters in the `bidResponse` object are common across all bidde
<thead><tr>
<th>Bidder</th>
<th>Supported Media Types</th>
<th> Prebid 1.0 Support?</th>
</tr></thead>
<tbody>
{% for page in bidder_pages %}
{% if page.media_types %}
<tr><td> {{page.biddercode}} </td><td> {% if page.media_types contains 'video' and page.media_types contains 'native' %} video, native {% elsif page.media_types contains 'native' %} native {% elsif page.media_types contains 'video' %} video {% endif %} </td><td> {% if page.prebid_1_0_supported %}X{% endif %} </td></tr>
{% if page.media_types and page.prebid_1_0_supported%}
<tr><td> {{page.biddercode}} </td><td> {% if page.media_types contains 'video' and page.media_types contains 'native' %} video, native {% elsif page.media_types contains 'native' %} native {% elsif page.media_types contains 'video' %} video {% endif %} </td></tr>
{% endif %}
{% endfor %}
</tbody>
Expand Down

0 comments on commit 96bacff

Please sign in to comment.