-
Notifications
You must be signed in to change notification settings - Fork 66
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
Bindings for "keyup" and "keydown" events onto document is preventing whole document key events #19
Comments
Exactly, no input on the page works. |
Facing same problem |
As a workaround, you could use un-minified version and comment out these two lines and then minify it again. But of course it's a workaround, it should be fixed. |
Same problem. Pls fix. |
I thought my PC had a problem... |
Same issue |
@websharik @PawelGIX @flemmens @MaybachDomei @zihniogmen @afrazahmmad import VueRangeSlider from 'vue-range-component' ///Import component mounted(){ //declare in mounted FIX............. |
vue-range-slider/dist/vue-range-slider.esm.js
Line 1280 in 7a96e22
vue-range-slider/dist/vue-range-slider.esm.js
Line 1281 in 7a96e22
Bindings for "keyup" and "keydown" events in given two lines assigns these callbacks to whole document object. So when you try to enter any text to any input, this component's methods prevents it.
These event bindings should only work for the component itself. Not the whole document.
The text was updated successfully, but these errors were encountered: