Notes |
|
|
I'm thinking that we might want to enable the javascript redirection on "known to be working browsers" and fallback to a progress bar then a "it should work open a new tab or window" message to all unknown or known-not-to-work browsers.
It would improve the situation instantly for android, kindle, black berry, playstation, etc. And the redirection is still sexy for good browsers. |
|
|
|
Could someone test this patch?
--- pf/html/common/pf.js 9249a03a53d92fb76df43908d5573fc3a0d1b6a0
+++ pf/html/common/pf.js d54fbb9deeb02d8598e7ca438e80a717a17341c0
@@ -71,7 +71,8 @@ function performRedirect(destination_url
Simple wrapper to redirect the browser. The wrapper enables us to call the redirect with .delay().
*/
function performRedirect(destination_url) {
- top.location.replace(destination_url.unescapeHTML());
+ window.location.href = destination_url.unescapeHTML();
}
/** |
|
|
|
Mailing list user Ahmed Sabry Raghib Saad <Ahmed.Sabry@EtisalatData.net> confirmed it's not working on his blackberry on the blackberry browser. |
|
|
(0003156)
|
fgaudreault
|
2012-10-19 12:35
|
|
Not heard anything about that lately. Worst case, disable the feature in the configuration.
Re-Open if you still have issues. |
|