debug variable
This commit is contained in:
parent
957bdda3ab
commit
902890c966
@ -1,5 +1,8 @@
|
||||
import { routes } from './routes.js';
|
||||
|
||||
let DEBUG = true;
|
||||
window.DEBUG = DEBUG;
|
||||
|
||||
/* main */
|
||||
window.onload = function () {
|
||||
let app = document.documentElement;
|
||||
|
@ -24,8 +24,15 @@
|
||||
import { update_lastfm_nowplay } from './js/lastfm-nowplay.js';
|
||||
|
||||
function autorun() {
|
||||
if (!window.DEBUG) {
|
||||
update_lastfm_nowplay();
|
||||
setInterval(autorun, 120_000); // 2 minutes
|
||||
} else {
|
||||
console.log(
|
||||
'INFO! Включена отладка, заскробленная композиция не загружается!\n' +
|
||||
'Файл personal.html',
|
||||
);
|
||||
}
|
||||
}
|
||||
autorun();
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user