We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On touch screen devices, I can't dock/undock panels or drag floating panes with touch operation.
<igc-dockmanager>
I can't do that. Instead, the web browser's pan operation was fired.
We should be able to do such operations smoothly.
This problem happened on Windows 11 23H2 and Microsoft Edge 124.0.2478.80.
The problem disappeared when I applied the touch-action CSS property with a none value to pane header elements.
touch-action
none
igc-dockmanager::part(pane-header), igc-dockmanager::part(tab-header) { touch-action: none; }
Here is a sample project.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
On touch screen devices, I can't dock/undock panels or drag floating panes with touch operation.
Steps to reproduce
<igc-dockmanager>
in a page.Result
I can't do that. Instead, the web browser's pan operation was fired.
Expected result
We should be able to do such operations smoothly.
Environment
This problem happened on Windows 11 23H2 and Microsoft Edge 124.0.2478.80.
Workaround
The problem disappeared when I applied the
touch-action
CSS property with anone
value to pane header elements.Attachments
Here is a sample project.
The text was updated successfully, but these errors were encountered: