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

Merge branch 'master' into deminify-2

This commit is contained in:
dkanada 2019-10-25 22:16:59 +09:00 committed by GitHub
commit 1a2019bb0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
88 changed files with 4241 additions and 2269 deletions

View file

@ -6,19 +6,13 @@ define(["loading"], function (loading) {
ApiClient.ajax({
url: ApiClient.getUrl("Startup/Complete"),
type: "POST"
}).then(function () {
Dashboard.navigate("dashboard.html");
}).then(function() {
loading.hide();
window.location.href = "index.html";
});
}
return function (view, params) {
view.querySelector(".btnWizardNext").addEventListener("click", onFinish);
view.addEventListener("viewshow", function () {
document.querySelector(".skinHeader").classList.add("noHomeButtonHeader");
});
view.addEventListener("viewhide", function () {
document.querySelector(".skinHeader").classList.remove("noHomeButtonHeader");
});
};
});