merge remote

This commit is contained in:
xdrm-brackets 2015-12-05 19:45:06 +01:00
commit 4e240478d8
1 changed files with 2 additions and 0 deletions

View File

@ -108,10 +108,12 @@ ShortcutManager.prototype = {
// si on lâche une touche, on l'enlève de "pressed"
window.addEventListener('keyup', function(e){
var index = pointer.pressed.indexOf(e.keyCode);
if( index > -1 ) // si c'est une touche définie comme déjà appuyée, on l'enlève
pointer.pressed = pointer.pressed.slice(0,index).concat( pointer.pressed.slice(index+1) );
else // sinon on supprime tout (car sûrement erreur d'écoute)
pointer.pressed = [];
}, false);
}
};