Frank Barletta created CB-11449:
-----------------------------------
Summary: Phonegap issue with an iframe
Key: CB-11449
URL: https://issues.apache.org/jira/browse/CB-11449
Project: Apache Cordova
Issue Type: Bug
Components: iOS, Plugin InAppBrowser
Environment: iOS 9.3.2
Reporter: Frank Barletta
Assignee: Shazron Abdullah
[~shazron]
iOS 9.3.2
Phonegap Build 6.1
We're loading an iFrame from another vendor into our iOS app. The form loads
perfectly fine. We tap on the form field and it does not allow any inputs. This
occurs on multiple iPhones.
We've made changes to the CSS for
-webkit-user-select: none;
now everything is
input { -webkit-user-select: text; }
We've disabled faskclick.js and made the changes suggested, still the same
thing.
Not sure what could be causing the problem. Any guidance would be appreciated.
Here is the HTML we've put into a simple phonegap application that replicates
the issue.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Input Bug Test</title>
</head>
<body>
<script type="text/javascript" src="phonegap.js"></script>
<script type="text/javascript" id="paystand_checkout"
src="https://checkout.paystand.co/v3/js/paystand.checkout.js"></script>
<script type="text/javascript">
PayStandCheckout.init({
"publishableKey": "gfjgsz3t4vbqklihsp9eev4c",
"checkoutDomain": "https://checkout.paystand.co/v3/",
"domain": "https://api.paystand.co",
"payment": {
"amount": "5000.20",
"currency": "USD"
},
"currency": "USD",
"paymentMethods": [
'echeck',
'card'
],
"billing": {
"street": "41 Grandview St",
"city": "Santa Cruz",
"postalCode": "95060",
"subdivisionCode": "CA",
"countryCode": "USA"
},
"payer": {
"name": "Christina Chan",
"email": "[email protected]"
},
"meta": {}
});
</script>
</body>
</html>
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]