Skip to content

Commit

Permalink
prodbebug - temp remove referrer check
Browse files Browse the repository at this point in the history
  • Loading branch information
ivopaunov committed Aug 30, 2023
1 parent cdb78bb commit ca15d94
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion common.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ function initWithOptions(options, element, shouldCollapse = true) {
mgr
.getBidData()
.then((u) => {
const referrerNeeded = window.location !== window.parent.location;
const referrerNeeded = false //window.location !== window.parent.location;
console.log({referrerNeeded})
console.log("window.location", window.location)
console.log("window.parent.location", window.parent.location)
console.log("window.top.location", window.top.location)
console.log("document.referrer", document.referrer)
if (
u
Expand Down

0 comments on commit ca15d94

Please sign in to comment.