mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #328 from jellyfin/release-10.3.z
Backmerge for Release 10.3.3
This commit is contained in:
commit
3245e5c0d8
34 changed files with 364 additions and 21 deletions
|
@ -467,6 +467,13 @@ var AppInfo = {};
|
|||
define("buttonenabled", ["legacy/buttonenabled"], returnFirstDependency);
|
||||
var promises = [];
|
||||
|
||||
if (!window.fetch) {
|
||||
promises.push(require(["fetch"]));
|
||||
}
|
||||
if ("function" != typeof Object.assign) {
|
||||
promises.push(require(["objectassign"]));
|
||||
}
|
||||
|
||||
Promise.all(promises).then(function () {
|
||||
createConnectionManager().then(function () {
|
||||
console.log("initAfterDependencies promises resolved");
|
||||
|
@ -818,6 +825,8 @@ var AppInfo = {};
|
|||
define("jstree", ["thirdparty/jstree/jstree", "css!thirdparty/jstree/themes/default/style.css"], returnFirstDependency);
|
||||
define("dashboardcss", ["css!css/dashboard"], returnFirstDependency);
|
||||
define("slideshow", [componentsPath + "/slideshow/slideshow"], returnFirstDependency);
|
||||
define("fetch", [bowerPath + "/fetch/fetch"], returnFirstDependency);
|
||||
define("objectassign", [componentsPath + "/polyfills/objectassign"], returnFirstDependency);
|
||||
define("clearButtonStyle", ["css!" + componentsPath + "/clearbutton"], returnFirstDependency);
|
||||
define("userdataButtons", [componentsPath + "/userdatabuttons/userdatabuttons"], returnFirstDependency);
|
||||
define("emby-playstatebutton", [componentsPath + "/userdatabuttons/emby-playstatebutton"], returnFirstDependency);
|
||||
|
@ -1135,7 +1144,7 @@ var AppInfo = {};
|
|||
})();
|
||||
|
||||
require(["css!css/site"]);
|
||||
|
||||
|
||||
return require(["browser"], onWebComponentsReady);
|
||||
}();
|
||||
pageClassOn("viewshow", "standalonePage", function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue