URL Redirector Appstore Cancels in Chrome

0
I want to implement the iDEAL module from the AppStore and therefore I need the URL Redirector. The redirector works in Firefox, but in Chrome the request is cancelled and the application is not redirected. Changing the method in the widget from: window.location.href = url into: window.location.assign(url) does not help. The changelog says "Chrome fix"... Where is my mistake?
asked
1 answers
1

Hi Rik,

I´ve been playing with the same mistake. After some trial and error I´ve eddited the .js in the widget. I replaced window.location.href = url with setTimeout(function(){document.location.href = url},500);. It seems to do the trick for Chrome, it also works for Internet explorer have not been able to test FireFox.

Kind regards, Liouwe

answered