26 lines
1.5 KiB
JavaScript
26 lines
1.5 KiB
JavaScript
// Configuration of periodic events in CoBiE time
|
|
// Each object describes when the event occurs and how often it repeats.
|
|
//
|
|
// Fields:
|
|
// start - CoBiE timestamp when the first occurrence happens.
|
|
// end - optional CoBiE timestamp after which the event stops.
|
|
// unit - the unit of the recurrence ("second", "xenocycle", "quantic",
|
|
// "chronon", "eonstrip", "megasequence", "cosmocycle", ...).
|
|
// interval - how many units between occurrences (1 = every unit,
|
|
// 2 = every second unit, ...).
|
|
// label - short description displayed on the calendar.
|
|
// duration - optional length of the event in seconds.
|
|
// showMega - optional boolean, show label on the megasequence view (default true).
|
|
// showDetail - optional boolean, show event in the detail view (default true).
|
|
|
|
window.SPECIAL_EVENTS = [
|
|
{ cobie: '49f4.9332', label: 'Afina', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '11e5.f552', label: 'Oleks', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '4d07.a2b2', label: 'Vincent', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '3edc.d430', label: 'Hochzeitstag', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '330d.d4ae', label: 'Zusammentag', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '11de.0c52', label: 'Anna', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '467f.ae61', label: 'Iris', unit: 'cosmocycle', interval: 1 },
|
|
{ cobie: '6854.7a75', label: 'Sleep', unit: 'second', interval: 86400, duration: 28800, showMega: false }
|
|
];
|