From a37b8e09725990d5f1bea5d61b09b0f86677bc45 Mon Sep 17 00:00:00 2001
From: rimaburder-index <55195208+rimaburder-index@users.noreply.github.com>
Date: Tue, 14 Jun 2022 12:49:13 -0400
Subject: [PATCH] included floating support content (#4)
* included floating support content
* Update ix.md
* Update ix.md
---
dev-docs/bidders/ix.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-docs/bidders/ix.md b/dev-docs/bidders/ix.md
index 3f8ff6e2f2..14e70f347f 100644
--- a/dev-docs/bidders/ix.md
+++ b/dev-docs/bidders/ix.md
@@ -72,7 +72,7 @@ var adUnits = [{
|------|-------|
| `banner` | Fully supported |
| `video` | Fully supported, including ad pods for OTT |
-| `native` | Not supported |
+| `native` | Supported |
# Ad Unit or Bidder Parameters
@@ -108,8 +108,8 @@ In Prebid.js versions 5.0 and above, mediaType and sizes are not required to be
| `video.maxduration` | Required | Integer | Maximum video ad duration in seconds.|
| `video.protocol` / `video.protocols` | Required | Integer / Integer[] | Either a single protocol provided as an integer, or protocols provided as a list of integers. `2` - VAST 2.0, `3` - VAST 3.0, `5` - VAST 2.0 Wrapper, `6` - VAST 3.0 Wrapper|
| `video.playerConfig` | Optional | Hash | The Index specific outstream player configurations.
-| `video.playerConfig.floatOnScroll` | Optional | Boolean | A boolean specifying whether you want to use the player’s floating capabilities, where:
- `true`: Allow the player to float.
Note: If you set floatOnScroll to true, Index updates the placement value to `5`.
- `false`: Do not allow the player to float (default).
-| `video.playerConfig.floatSize` | Optional | Integer[] | The height and width of the floating player in pixels. If you do not specify a float size, the player adjusts to the aspect ratio of the player size that is defined when it is not floating. Index recommends that you review and test the float size to your user experience preference.
+| `video.playerConfig.floatOnScroll` | Optional | Boolean | A boolean specifying whether you want to use the player’s floating capabilities, where:
- `true`: Use the Index player’s float capabilities.
**Note**: If you set `floatOnScroll` to `true`, Index updates the `placement` value to `5`.
**Note:** We do not recommend using the player's default float capabilities if you have more than one outstream ad unit per page.
- `false`: Do not use the Index player's float capabilities (default). |
+| `video.playerConfig.floatSize` | Optional | Integer[] | The height and width of the floating player in pixels. If you do not specify a float size, the player adjusts to the aspect ratio of the player size that is defined when it is not floating. Index recommends that you review and test the float size to your user experience preference.|
## Setup Guide
@@ -234,7 +234,7 @@ Publishers have two options to receive outstream video demand from Index:
**Index’s outstream video player**
Publishers who are using Index as a bidding adapter in Prebid.js can show outstream video ads on their site from us by using Index’s outstream video player. This allows a video ad to display inside of a video player and can be placed anywhere on a publisher’s site, such as in-article, in-feed, and more.
-Define a new `video` object for our outstream video player at either the adUnit level or the `bidder` level. If you are setting it at the bidder level, define the size of the video player using the parameters `video.h` and `video.w`. If you are setting it at the `adUnit` level, define the size using video.playerSize.
+Define a new `video` object for our outstream video player at either the adUnit level or the `bidder` level. If you are setting it at the bidder level, define the size of the video player using the parameters `video.h` and `video.w`. If you are setting it at the `adUnit` level, define the size using `video.playerSize`.**Note:** The bidder level video configurations override the adunit level configurations. The `playerConfig` is only a bidder level configuration.
For more information on how to structure the `video` object, refer to the following code example: