[jira] [Commented] (CB-12211) InAppBrowser - problem in iOS 10 when try to open an url in external browser with window.open(url, "_system")

2017-01-20 Thread Marco (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15832424#comment-15832424
 ] 

Marco commented on CB-12211:


Hi [~Chetan74],

I didn't found any fix, here no one answer... 
If you have news, please write here a comment.

Thank you


> InAppBrowser - problem in iOS 10 when try to open an url in external browser 
> with window.open(url, "_system")
> -
>
> Key: CB-12211
> URL: https://issues.apache.org/jira/browse/CB-12211
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
> Environment: iOS 10
>Reporter: Marco
>
> Consider the following scenario:
> 1. My Cordova App have a filter based on InAppBrowser like this:
> function openurlinexternalbrowser() {
> $(document).on('click', 'a[target="_system"],a[target="_blank"]', 
> function (e) {
> e.preventDefault();
> var url = this.href;
> window.open(url, "_system");
> });
> }
> 2. This filter permits to open the url in anchor tag ( ... ) in 
> external browser. For example: 
>   http://www.google.com/; 
> target="_blank">Test Google
> 3. So, my App uses InAppBrowser plugin and calls "window.open" with "_system" 
> as a target.
> --- WRONG BEHAVIOUR --- 
> What's happen when I try to open an url?
> - in iOS 9, all works fine, url it's open in external browser after click on 
> a link;
> - in iOS 10 nothing happen, but if you click on a link, and then click twice 
> on the home button (like when you enter in multitasking mode), the browser 
> appears and it opens the url.
> It's possible to fix this problem?
> Thank you



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-12211) InAppBrowser - problem in iOS 10 when try to open an url in external browser with window.open(url, "_system")

2017-01-19 Thread Chetan (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15831164#comment-15831164
 ] 

Chetan commented on CB-12211:
-

Hello,

Any fixes done on this issue.
We are facing the similar issue using IOS10.
Please help us to fix this issue.

Thanks
Chetan

> InAppBrowser - problem in iOS 10 when try to open an url in external browser 
> with window.open(url, "_system")
> -
>
> Key: CB-12211
> URL: https://issues.apache.org/jira/browse/CB-12211
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
> Environment: iOS 10
>Reporter: Marco
>
> Consider the following scenario:
> 1. My Cordova App have a filter based on InAppBrowser like this:
> function openurlinexternalbrowser() {
> $(document).on('click', 'a[target="_system"],a[target="_blank"]', 
> function (e) {
> e.preventDefault();
> var url = this.href;
> window.open(url, "_system");
> });
> }
> 2. This filter permits to open the url in anchor tag ( ... ) in 
> external browser. For example: 
>   http://www.google.com/; 
> target="_blank">Test Google
> 3. So, my App uses InAppBrowser plugin and calls "window.open" with "_system" 
> as a target.
> --- WRONG BEHAVIOUR --- 
> What's happen when I try to open an url?
> - in iOS 9, all works fine, url it's open in external browser after click on 
> a link;
> - in iOS 10 nothing happen, but if you click on a link, and then click twice 
> on the home button (like when you enter in multitasking mode), the browser 
> appears and it opens the url.
> It's possible to fix this problem?
> Thank you



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-12211) InAppBrowser - problem in iOS 10 when try to open an url in external browser with window.open(url, "_system")

2016-12-05 Thread Marco (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15722314#comment-15722314
 ] 

Marco commented on CB-12211:


Hi [~jcesarmobile],

thank you for your answer.
Yes, I have a Content-Security-Policy in my index.thml, is this one:



There's something wrong?

Thank you

> InAppBrowser - problem in iOS 10 when try to open an url in external browser 
> with window.open(url, "_system")
> -
>
> Key: CB-12211
> URL: https://issues.apache.org/jira/browse/CB-12211
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
> Environment: iOS 10
>Reporter: Marco
>
> Consider the following scenario:
> 1. My Cordova App have a filter based on InAppBrowser like this:
> function openurlinexternalbrowser() {
> $(document).on('click', 'a[target="_system"],a[target="_blank"]', 
> function (e) {
> e.preventDefault();
> var url = this.href;
> window.open(url, "_system");
> });
> }
> 2. This filter permits to open the url in anchor tag ( ... ) in 
> external browser. For example: 
>   http://www.google.com/; 
> target="_blank">Test Google
> 3. So, my App uses InAppBrowser plugin and calls "window.open" with "_system" 
> as a target.
> --- WRONG BEHAVIOUR --- 
> What's happen when I try to open an url?
> - in iOS 9, all works fine, url it's open in external browser after click on 
> a link;
> - in iOS 10 nothing happen, but if you click on a link, and then click twice 
> on the home button (like when you enter in multitasking mode), the browser 
> appears and it opens the url.
> It's possible to fix this problem?
> Thank you



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org



[jira] [Commented] (CB-12211) InAppBrowser - problem in iOS 10 when try to open an url in external browser with window.open(url, "_system")

2016-12-05 Thread jcesarmobile (JIRA)

[ 
https://issues.apache.org/jira/browse/CB-12211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15722117#comment-15722117
 ] 

jcesarmobile commented on CB-12211:
---

Do you have a Content-Security-Policy meta tag in your index.html?

If you have it, post it.

> InAppBrowser - problem in iOS 10 when try to open an url in external browser 
> with window.open(url, "_system")
> -
>
> Key: CB-12211
> URL: https://issues.apache.org/jira/browse/CB-12211
> Project: Apache Cordova
>  Issue Type: Bug
>  Components: Plugin InAppBrowser
> Environment: iOS 10
>Reporter: Marco
>
> Consider the following scenario:
> 1. My Cordova App have a filter based on InAppBrowser like this:
> function openurlinexternalbrowser() {
> $(document).on('click', 'a[target="_system"],a[target="_blank"]', 
> function (e) {
> e.preventDefault();
> var url = this.href;
> window.open(url, "_system");
> });
> }
> 2. This filter permits to open the url in anchor tag ( ... ) in 
> external browser. For example: 
>   http://www.google.com/; 
> target="_blank">Test Google
> 3. So, my App uses InAppBrowser plugin and calls "window.open" with "_system" 
> as a target.
> --- WRONG BEHAVIOUR --- 
> What's happen when I try to open an url?
> - in iOS 9, all works fine, url it's open in external browser after click on 
> a link;
> - in iOS 10 nothing happen, but if you click on a link, and then click twice 
> on the home button (like when you enter in multitasking mode), the browser 
> appears and it opens the url.
> It's possible to fix this problem?
> Thank you



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org