1
0
Fork 0
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:
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

@ -11,6 +11,7 @@
<webMarkupMin xmlns="http://tempuri.org/WebMarkupMin.Configuration.xsd"> <webMarkupMin xmlns="http://tempuri.org/WebMarkupMin.Configuration.xsd">
<core> <core>
<css> <css>

View file

@ -31,10 +31,14 @@
function showServerConnectionFailure() { function showServerConnectionFailure() {
Dashboard.alert({ // Need the timeout because jquery mobile will not show a popup while another is in process of closing
message: Globalize.translate("MessageUnableToConnectToServer"), setTimeout(function () {
title: Globalize.translate("HeaderConnectionFailure") Dashboard.alert({
}); message: Globalize.translate("MessageUnableToConnectToServer"),
title: Globalize.translate("HeaderConnectionFailure")
});
}, 300);
} }
function getServerHtml(server) { function getServerHtml(server) {

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<packages> <packages>
<package id="MediaBrowser.ApiClient.Javascript" version="3.0.249" targetFramework="net45" /> <package id="MediaBrowser.ApiClient.Javascript" version="3.0.249" targetFramework="net45" />
<package id="WebMarkupMin.Core" version="0.9.8" targetFramework="net45" /> <package id="WebMarkupMin.Core" version="0.9.9" targetFramework="net45" />
</packages> </packages>