From 5539c97a2a5e6383d53d3f2874277f9df22af01f Mon Sep 17 00:00:00 2001 From: rufiange Date: Wed, 19 Feb 2025 17:00:25 -0500 Subject: [PATCH] doc: update --- modules/contxtfulRtdProvider.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/contxtfulRtdProvider.js b/modules/contxtfulRtdProvider.js index 3029864049a..0081b812bd5 100644 --- a/modules/contxtfulRtdProvider.js +++ b/modules/contxtfulRtdProvider.js @@ -354,7 +354,7 @@ function tryGetAdUnitPosition(adUnit) { let adUnitPosition = {}; adUnit.ortb2Imp = adUnit.ortb2Imp || {}; - // try to get position with the divId + // Try to get position with the divId const divIdPosition = tryMultipleDivIdPositions(adUnit); if (divIdPosition) { adUnitPosition.p = { x: divIdPosition.x, y: divIdPosition.y }; @@ -363,7 +363,7 @@ function tryGetAdUnitPosition(adUnit) { return adUnitPosition; } - // try to get IAB position + // Try to get IAB position const iabPos = adUnit?.mediaTypes?.banner?.pos; if (iabPos !== undefined) { adUnitPosition.p = iabPos;