jquery-meiomask icon indicating copy to clipboard operation
jquery-meiomask copied to clipboard

It loses selection on cmd+key

Open kilianc opened this issue 12 years ago • 1 comments

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?

kilianc avatar Oct 22 '12 16:10 kilianc

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.

ReginaldoSantos avatar Jan 16 '13 11:01 ReginaldoSantos