Fix copy-paste within the registration and billing web views

This commit is contained in:
Ben Gotow 2018-12-17 21:02:21 -08:00
parent 3b106f6484
commit 1872954320

View file

@ -10,6 +10,9 @@ const isTextInput = node => {
if (!node) {
return false;
}
if (node.nodeName === 'WEBVIEW') {
return true;
}
if (node.nodeName === 'TEXTAREA') {
return true;
}