Skip to content

Commit

Permalink
doc: update
Browse files Browse the repository at this point in the history
  • Loading branch information
rufiange committed Feb 19, 2025
1 parent 8615c3c commit 5539c97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/contxtfulRtdProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand All @@ -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;
Expand Down

0 comments on commit 5539c97

Please sign in to comment.