mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-20 04:18:19 -07:00
23677db990
This de-minifies and de-uglifies `controllers` subdirectory
31 lines
1.0 KiB
JavaScript
31 lines
1.0 KiB
JavaScript
define(["events", "loading"], function (events, loading) {
|
|
"use strict";
|
|
|
|
function onListingsSubmitted() {
|
|
Dashboard.navigate("livetvstatus.html");
|
|
}
|
|
|
|
function init(page, type, providerId) {
|
|
var url = "components/tvproviders/" + type + ".js";
|
|
|
|
require([url], function (factory) {
|
|
var instance = new factory(page, providerId, {});
|
|
events.on(instance, "submitted", onListingsSubmitted);
|
|
instance.init();
|
|
});
|
|
}
|
|
|
|
function loadTemplate(page, type, providerId) {
|
|
require(["text!./components/tvproviders/" + type + ".template.html"], function (html) {
|
|
page.querySelector(".providerTemplate").innerHTML = Globalize.translateDocument(html);
|
|
init(page, type, providerId);
|
|
});
|
|
}
|
|
|
|
pageIdOn("pageshow", "liveTvGuideProviderPage", function () {
|
|
loading.show();
|
|
var providerId = getParameterByName("id");
|
|
loadTemplate(this, getParameterByName("type"), providerId);
|
|
});
|
|
});
|