Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TextArea Ipad little bug #3826

Closed
kevinseebach opened this issue Apr 4, 2017 · 6 comments
Closed

TextArea Ipad little bug #3826

kevinseebach opened this issue Apr 4, 2017 · 6 comments

Comments

@kevinseebach
Copy link

I have found a strange behaviours with Textarea and Ipad. When i double tap on a fabric textarea to edit it on my Ipad I have the following behaviours :
1)- A scroll down on the page
2)- when I type some texte : a cursor appears at the middle of my arround HTML and moove when I write without display any caracter.

This is not very important because textarea is modified as well but it's a little mistake.

@asturur
Copy link
Member

asturur commented Apr 4, 2017

i think it depends on the zoom level of the ipad. what version of fabric?

@kevinseebach
Copy link
Author

version 1.7.9
if someone else can try it. Maybe it's my application but not sure.

@asturur
Copy link
Member

asturur commented Apr 5, 2017

i have no ipads at all nor iphone.

@CristiScorteanu
Copy link
Contributor

  1. I can confirm that a wild cursor appears:
    bug

  2. There is a problem with the fix for Carriage return with space are inserted instead of space for inline text editing in Google Crome v57 #3798, when I type a word, insert a space, then nothing happens. From what I saw it's because of the white-space: nowrap;. So it fixes chrome 57, but bugs safari.

@AlexanderIstomin
Copy link

for me it works at least in safari on mac

@AlexanderIstomin
Copy link

sorry, i forgot to mension: i added this little hack to my css file to fix spacebar issue only in chrome:
/* temporary fix for chrome spacebar bug */
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm)
{
textarea[autocapitalize='off'] {
white-space: nowrap !important;
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants