1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update references

This commit is contained in:
Luke Pulverenti 2015-11-28 10:40:03 -05:00
parent f65465a5ae
commit 77e3111ad1
5 changed files with 7 additions and 5 deletions

View file

@ -39,6 +39,6 @@
"commit": "cec8e49744a1e18b14a711eea77e201bb70de544" "commit": "cec8e49744a1e18b14a711eea77e201bb70de544"
}, },
"_source": "git://github.com/desandro/doc-ready.git", "_source": "git://github.com/desandro/doc-ready.git",
"_target": "1.0.x", "_target": "~1.0.4",
"_originalSource": "doc-ready" "_originalSource": "doc-ready"
} }

View file

@ -29,14 +29,14 @@
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" "webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
}, },
"ignore": [], "ignore": [],
"homepage": "https://github.com/polymerelements/iron-behaviors", "homepage": "https://github.com/PolymerElements/iron-behaviors",
"_release": "1.0.11", "_release": "1.0.11",
"_resolution": { "_resolution": {
"type": "version", "type": "version",
"tag": "v1.0.11", "tag": "v1.0.11",
"commit": "084fbc7f60343d717bb2208f350774f4c9899777" "commit": "084fbc7f60343d717bb2208f350774f4c9899777"
}, },
"_source": "git://github.com/polymerelements/iron-behaviors.git", "_source": "git://github.com/PolymerElements/iron-behaviors.git",
"_target": "^1.0.0", "_target": "^1.0.0",
"_originalSource": "polymerelements/iron-behaviors" "_originalSource": "PolymerElements/iron-behaviors"
} }

View file

@ -125,7 +125,6 @@
originalUrl += "&accept=webp"; originalUrl += "&accept=webp";
} }
var deferred = DeferredBuilder.Deferred();
var key = getCacheKey(originalUrl); var key = getCacheKey(originalUrl);
var fileEntryCallback = function (fileEntry) { var fileEntryCallback = function (fileEntry) {

View file

@ -162,12 +162,14 @@
}).then(function () { }).then(function () {
appStorage.setItem(cacheKey, 'true'); appStorage.setItem(cacheKey, 'true');
return true;
}, function (e) { }, function (e) {
if (e.status == 404) { if (e.status == 404) {
appStorage.setItem(cacheKey, 'false'); appStorage.setItem(cacheKey, 'false');
} }
return false;
}); });
} }
} }

View file

@ -2194,6 +2194,7 @@ var AppInfo = {};
deps.push('appstorage'); deps.push('appstorage');
deps.push('scripts/mediaplayer'); deps.push('scripts/mediaplayer');
deps.push('scripts/appsettings'); deps.push('scripts/appsettings');
deps.push('apiclient/apiclient');
deps.push('apiclient/connectionmanager'); deps.push('apiclient/connectionmanager');
require(deps, function () { require(deps, function () {