rc3-html-infobeamer/public/js/config.2fd38d4779fef41f713e...

31 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

2021-12-29 00:41:09 +01:00
(() => {
// ns-params:@params
var cmsFetchInterval = 500;
var cmsURL = "/content/live";
var mastodonFetchInterval = 120;
var mastodonURL = "/toots-rc3-chaos.social.json";
var musicFetchInterval = 1;
var musicURL = "/music.json";
var scheduleFetchInterval = 60;
var scheduleURL = "/everything.schedule.json";
var twitterFetchInterval = 120;
var twitterURL = "/tweets-rc3.json";
var workerBaseURL = "/";
// <stdin>
window.infoBeamerConfig = /* @__PURE__ */ new Map();
window.infoBeamerConfig.set("workerBaseURL", workerBaseURL);
window.infoBeamerConfig.set("scheduleURL", scheduleURL);
window.infoBeamerConfig.set("scheduleFetchInterval", scheduleFetchInterval);
window.infoBeamerConfig.set("twitterURL", twitterURL);
window.infoBeamerConfig.set("twitterFetchInterval", twitterFetchInterval);
window.infoBeamerConfig.set("mastodonURL", mastodonURL);
window.infoBeamerConfig.set("mastodonFetchInterval", mastodonFetchInterval);
window.infoBeamerConfig.set("musicURL", musicURL);
window.infoBeamerConfig.set("musicFetchInterval", musicFetchInterval);
window.infoBeamerConfig.set("cmsURL", cmsURL);
window.infoBeamerConfig.set("cmsFetchInterval", cmsFetchInterval);
console.log("Info Beamer Configuration: ");
console.log(window.infoBeamerConfig);
})();