dmauro / Keypress

A keyboard input capturing utility in which any key can be a modifier key.
http://dmauro.github.io/Keypress/
Apache License 2.0
3.18k stars 313 forks source link

`simple_combo` doesn't work in a bootstrap modal #144

Open zhaoyi0113 opened 6 years ago

zhaoyi0113 commented 6 years ago

I am using below code to listen on meta m key event but it doesn't work if there is a bootstrap modal on the page.

listener.simple_combo('meta m', (e) => {
            console.log('hello ');
            e.stopDefault();
        });