remove tasks from startup

This commit is contained in:
Luke Pulverenti 2014-11-28 12:41:47 -05:00
parent f85a900730
commit fd256835ca
3 changed files with 10 additions and 5 deletions

View file

@ -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) {