Trouble with multiple tabs opening with my Doubleclick exit - QA rejected
Hi, usually I implement a clicktag via animate using window.open(window.clickTag); and the code usually works for some publishers, however when I try to use the Enabler.exit('Background Exit'); for Doubleclick I get a QA rejection because it tries to open multiple Tabs on exit. There is a loop occuring and I dont really know how to resolve it.
Ive tried to get help via the doubleclick chat but they said because they dont support Animate CC they cant properly troubleshoot the issue.
My Enabler code looks like the below. Any ideas why this might be occuring?
Please let me know if I should paste more code
Thanks Dave
<script src="https://s0.2mdn.net/ads/studio/Enabler.js"></script>
//this is the js
| this.frame_0 = function() { | |||
| this.btn_click.addEventListener("click", fl_ClickToGoToWebPage_2); | |||
| function fl_ClickToGoToWebPage_2() { | |||
| window.open(window.clickTag); | |||
| } | |||
| } | |||
