Skip to content

Commit

Permalink
sostituito monte Bianco con Alpe di Siusi
Browse files Browse the repository at this point in the history
  • Loading branch information
paolini committed Feb 20, 2024
1 parent 8fe4b4f commit 91ec8df
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,22 @@ const pages = [
duration: 60000,
priority: () => {
if (TEST) return 1 // mostra sempre in modalità test
// show only in minute 14
return 0 // disabled
// show only in minute 42
const date = moment().tz("Europe/Rome").format('mm')
if (date === '42') return 3
else return 0
},
style: "margin-top: -150px; margin-bottom: -100px; z-index: -1; zoom: 1.2",
delay: 10000,
}),

new EmbedPage({
url: "https://seiseralm-puflatsch.panomax.com/",
duration: 60000,
priority: () => {
if (TEST) return 1 // mostra sempre in modalità test
// show only in minute 42
const date = moment().tz("Europe/Rome").format('mm')
if (date === '42') return 3
else return 0
Expand Down

0 comments on commit 91ec8df

Please sign in to comment.