18 lines
622 B
JavaScript
18 lines
622 B
JavaScript
// const colors = ['red', 'green', 'blue', 'cyan', 'magenta'];
|
|
// let current_color = -1;
|
|
// function get_color() { return colors[current_color]; }
|
|
// function next_color() { current_color ++; current_color = current_color % colors.length };
|
|
|
|
import * as settings from '/js/settings.js';
|
|
import * as notifications from '/js/notifications.js';
|
|
import * as actions from '/js/actions.js';
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
settings.enable();
|
|
notifications.enable();
|
|
actions.enable()
|
|
// load_domain_from_storage_and_enable_interactions();
|
|
// arm_action_buttons();
|
|
// begin_status_update_loop();
|
|
});
|