This is my code:
Mousetrap.bind('l', (e) => {
console.log('l')
})
Mousetrap.bind('k+l', (e) => {
console.log('k+l')
})
I have 2 questions:
1. When I press l I'm seeing both logs. Any ideas why?
2. When I'm pressing k + l, I'm seeing both logs…
I'm working with the new createjs, and they've removed flip and addflipframes. Apparently scaleX=-1 is suppose to be faster but now I get a weird lag when I want to move my character left and right. I'm just hoping that I've coded my movement…
I have a web application that uses a mousetrap API for keyboard shortcuts.
I am facing difficulties in the following scenario:
I'm in a modal (jQueryUI) and this modal having a second modal alert. When the alert is closed, the focus does not return…