fix settings modal hiding on keypress

This commit is contained in:
Andrew Karpow 2014-02-04 18:58:05 +01:00
parent 6b6622988d
commit 5920d9f1bf
1 changed files with 2 additions and 1 deletions

View File

@ -460,9 +460,10 @@ function getHost() {
socket.send('MPD_API_GET_MPDHOST');
function onEnter(event) {
if ( event.which == 13 )
if ( event.which == 13 ) {
setHost();
$('#settings').modal('hide');
}
}
$('#mpdhost').keypress(onEnter);