Skip to content
Snippets Groups Projects
Commit d5b4996a authored by Christophe Simonis's avatar Christophe Simonis
Browse files

[FIX] web: only open reports in new window on iOS devices

bzr revid: chs@openerp.com-20130702093932-r0nl3b02fludgu9s
parent b732bb34
Branches
Tags
No related merge requests found
......@@ -286,7 +286,7 @@ instance.web.Session = instance.web.JsonRPC.extend( /** @lends instance.web.Sess
// iOS devices doesn't allow iframe use the way we do it,
// opening a new window seems the best way to workaround
if (navigator.userAgent.match(/(iPod|iPhone|iPad)/) || true) {
if (navigator.userAgent.match(/(iPod|iPhone|iPad)/)) {
var params = _.extend({}, options.data || {}, {token: token});
var url = this.url(options.url, params);
instance.web.unblockUI();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment