You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2020/08/17 05:11:55 UTC

[GitHub] [cordova-plugin-inappbrowser] joeldhenry opened a new issue #762: Unable to Paste into input field

joeldhenry opened a new issue #762:
URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/762


   # Bug Report
   Unable to copy/paste username/email/password into form field 
   
   When selecting an input, normally a popup allows you to select/copy/paste however in IAB you are unable to do this\
   
   Cordova: 10.0.0
   Cordova-iOS: 6.1.0
   Cordova-android: 9.0.0
   Other Frameworks: Angular
   Operating System: iOS/Android
   
   ## Checklist
   
   - [X] I searched for existing GitHub issues
   - [X] I updated all Cordova tooling to most recent version
   - [X] I included all the necessary information above
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



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


[GitHub] [cordova-plugin-inappbrowser] ivanlondono commented on issue #762: Unable to Paste into input field

Posted by GitBox <gi...@apache.org>.
ivanlondono commented on issue #762:
URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/762#issuecomment-772905609


   Disable select touch and hold and highlight colors, in css file
   also you can set that in a specific form field
   
   ```
   html {
       -webkit-user-select: none;
       -webkit-touch-callout: none;
       -webkit-tap-highlight-color:rgba(0,0,0,0);
   }
   ```
   and if you still want it to work for input then just add 
   ```
   input {
       -webkit-user-select: auto !important;
       -webkit-touch-callout: default !important;
   }
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



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


[GitHub] [cordova-plugin-inappbrowser] joeldhenry closed issue #762: Unable to Paste into input field

Posted by GitBox <gi...@apache.org>.
joeldhenry closed issue #762:
URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/762


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



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