jquery-meiomask
jquery-meiomask copied to clipboard
It loses selection on cmd+key
I changed this on 337
if (o.nKey === 9 || o.nKey === 16 || o.nKey === 91) return true;
Not sure if it is correct, maybe we should loop through the ignoreKeys
array?
No sure if I'm facing the same problem ... but field was losing caret when ctrl and alt keys were pressed sequentially.
What I did was insert the line below:
if(o.nKey==17 || o.nKey==18) return false;
inside the "ignoreKeys" treatment of _onKeyDown method.