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