When the dialog is opened, the text area is focused. When enter is
pressed (and the form is submit) the window now behaves as expected and
adds the stream to the playlist and closes. The text area is now also
cleared once the form is submit, previously the old stream was still
visible when the dialog was opened a second time.
}
});
+ $('#addstream').on('shown.bs.modal', function () {
+ $('#streamurl').focus();
+ })
+ $('#addstream form').on('submit', function (e) {
+ addStream();
+ });
+
if(!notificationsSupported())
$('#btnnotify').addClass("disabled");
else
if($('#streamurl').val().length > 0) {
socket.send('MPD_API_ADD_TRACK,'+$('#streamurl').val());
}
+ $('#streamurl').val("");
$('#addstream').modal('hide');
}