1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-01 13:24:10 +01:00

Another try on keyboard shortcuts. Why doesn't '?' have the same key code?!?

This commit is contained in:
Thomas Tanghus 2012-09-03 01:05:19 +02:00
parent 8912d86927
commit 9818045fea

View File

@ -1934,7 +1934,13 @@ $(document).ready(function(){
case 82: // r
OC.Contacts.Contacts.update({cid:OC.Contacts.Card.id});
break;
case 171: // ?
case 63: // ? German.
if(event.shiftKey) {
ninjahelp.toggle('fast');
}
break;
case 171: // ? Danish
case 191: // ? Standard qwerty
ninjahelp.toggle('fast');
break;
}