Added port check in wizard.

also fixed favicon
This commit is contained in:
tidusjar 2017-02-08 21:35:48 +00:00
commit 972f1cea3c
28 changed files with 23 additions and 17 deletions

View file

@ -25,6 +25,12 @@
$('#contentBody').on('click', '#embyApiKeySave', function (e) {
e.preventDefault();
var port = $('#portNumber').val();
if (!port) {
generateNotify("Please provide a port number", "warning");
}
$('#spinner').attr("class", "fa fa-spinner fa-spin");
var $form = $("#embyAuthForm");