mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
remove tasks from startup
This commit is contained in:
parent
f85a900730
commit
fd256835ca
3 changed files with 10 additions and 5 deletions
|
@ -31,10 +31,14 @@
|
|||
|
||||
function showServerConnectionFailure() {
|
||||
|
||||
Dashboard.alert({
|
||||
message: Globalize.translate("MessageUnableToConnectToServer"),
|
||||
title: Globalize.translate("HeaderConnectionFailure")
|
||||
});
|
||||
// Need the timeout because jquery mobile will not show a popup while another is in process of closing
|
||||
setTimeout(function () {
|
||||
Dashboard.alert({
|
||||
message: Globalize.translate("MessageUnableToConnectToServer"),
|
||||
title: Globalize.translate("HeaderConnectionFailure")
|
||||
});
|
||||
|
||||
}, 300);
|
||||
}
|
||||
|
||||
function getServerHtml(server) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue