mirror of
https://github.com/SuperBFG7/ympd
synced 2024-11-23 05:17:18 +00:00
Merge pull request #89 from dewyatt/master
Add arrow left/right and spacebar controls
This commit is contained in:
commit
84f3a78a42
@ -638,3 +638,23 @@ function songNotify(title, artist, album) {
|
|||||||
notification.close();
|
notification.close();
|
||||||
}, 3000, notification);
|
}, 3000, notification);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$(document).keydown(function(e){
|
||||||
|
if (e.target.tagName == 'INPUT') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
switch (e.which) {
|
||||||
|
case 37: //left
|
||||||
|
socket.send('MPD_API_SET_PREV');
|
||||||
|
break;
|
||||||
|
case 39: //right
|
||||||
|
socket.send('MPD_API_SET_NEXT');
|
||||||
|
break;
|
||||||
|
case 32: //space
|
||||||
|
clickPlay();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
e.preventDefault();
|
||||||
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user