Hi!
In the AcceptCore.js file, there's a bug.
c.onload=function(){setTimeout(function(){n(c,b),2e3})}
I think it should be
c.onload=function(){setTimeout(function(){n(c,b)},2e3)}
The 2e3 parameter is not passed as a parameter of the setTimeout in the buggy line.
VB
10-06-2017 11:43 AM