-
-
Notifications
You must be signed in to change notification settings - Fork 637
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
Input box failed to get focus #110
Milestone
Comments
Try below: moveable.on("dragStart", e => {
if (e.inputEvent.target === inputBox) {
return false;
}
}); |
Moveable is updated. Check it again.
|
Thank you firstBut It still doesn't work. I use it like thisThrough this website, only
|
@MrHzq moveable 0.13.1 is released. Check it below: moveable.on("dragStart", e => {
e.stop();
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Input box failed to get focus
When using the input box, clicking the input box will not activate
The text was updated successfully, but these errors were encountered: