projects
/
ympd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bde1d02
)
fix settings modal hiding on keypress
author
Andrew Karpow
<andy@ndyk.de>
Tue, 4 Feb 2014 17:58:05 +0000
(18:58 +0100)
committer
Andrew Karpow
<andy@ndyk.de>
Tue, 4 Feb 2014 17:58:05 +0000
(18:58 +0100)
htdocs/js/mpd.js
patch
|
blob
|
history
diff --git
a/htdocs/js/mpd.js
b/htdocs/js/mpd.js
index
60114da
..
13b59b8
100644
(file)
--- a/
htdocs/js/mpd.js
+++ b/
htdocs/js/mpd.js
@@
-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);