Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Workaround
-
None
-
None
-
iOS 9.3.2
-
Important
Description
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":
,
"currency": "USD",
"paymentMethods": [
'echeck',
'card'
],
"billing":
,
"payer":
,
"meta": {}
});
</script>
</body>
</html>