Skip to content

Commit

Permalink
let -> const
Browse files Browse the repository at this point in the history
  • Loading branch information
Gleb Glushtsov committed Jun 18, 2019
1 parent 5bcde42 commit a72b1a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/33acrossBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function _mapAdUnitPathToElementId(adUnitCode) {

for (let i = 0; i < adSlots.length; i++) {
if (isMatchingAdSlot(adSlots[i])) {
let id = adSlots[i].getSlotElementId();
const id = adSlots[i].getSlotElementId();

utils.logInfo(`[33Across Adapter] Map ad unit path to HTML element id: '${adUnitCode}' -> ${id}`);

Expand Down

0 comments on commit a72b1a0

Please sign in to comment.