-
Notifications
You must be signed in to change notification settings - Fork 723
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
Zoom Problem #484
Comments
Hi @bliet! I haven't tried this, but I read here that you'll need to create a css file with the following: body {
-ms-touch-action: manipulation !important;
} Then add that file as a user style sheet in Tools → Internet Options → Accessibility. I haven't tried adding the css to the page or directly to the keyboard container yet, but I'm in a hurry this morning. |
I cannot use a solutions, which the user have to change in his internet options. I tried this in my code:
and this:
It doesn't work. |
Hmm, so I read somewhere else that IE10 and IE11 are different LOL And please try targeting the keyboard elements, not the divs inside: .ui-keyboard {
-ms-touch-action: manipulation; /* IE10 */
touch-action: manipulation; /* IE11+ */
} Also, try adding a meta tag to disable zooming: <meta name="viewport" content="width=device-width, user-scalable=no"> Either way, I will likely add options to allow setting your own keybinding as I think the best method would be to use PEP. |
I use a viewport already. But I don't want to disable the scale for the hole site, only for the keyboards. I will try the "touch-action" tomorrow. Many thanks. (UPDATE: It works.) |
Oh great!, I'll add those definitions to the keyboard container then. |
The normal behavior of IE11 and Edge is to Zoom in by a Double Tap.
That is a problem because you cannot type fast on the OSK. Is there a way to solve this issue?
The text was updated successfully, but these errors were encountered: