We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems there is a bug in the Rubicon adaptor with safari and edge browser.
this line is not working in Safari (tested by me) and neither in edge (so I was told, I didn't test)
line 879 in prebid.js : var rubiconObj = iframeObj.contentWindow.RubiconAdServing;
the contentWindow variable is undefined in Safari. In order for it to work, we need to change the line to:
var rubiconObj = iframeObj.window.RubiconAdServing;
The text was updated successfully, but these errors were encountered:
You could change that line to:
var rubiconObj = iframeObj.contentWindow.RubiconAdServing || iframeObj.window.RubiconAdServing;
That way if the first doesn't exists the second will be used
Sorry, something went wrong.
fixed in #130
hjeong12
No branches or pull requests
It seems there is a bug in the Rubicon adaptor with safari and edge browser.
this line is not working in Safari (tested by me) and neither in edge (so I was told, I didn't test)
line 879 in prebid.js : var rubiconObj = iframeObj.contentWindow.RubiconAdServing;
the contentWindow variable is undefined in Safari. In order for it to work, we need to change the line to:
var rubiconObj = iframeObj.window.RubiconAdServing;
The text was updated successfully, but these errors were encountered: