the-glorious-startpage/js/script.js
2020-06-09 10:02:03 +08:00

56 lines
1.3 KiB
JavaScript

// Instantiate config
const config = new Config();
// Instantiate background setter
const bodyBackground = new BodyBackground();
// Instantiate a clock object
const clock = new Clock();
// Instantiate dock buttons
const dockButtons = new DockButtons();
// Instantiate profile image/animation
const profileImage = new ProfileImage();
// Instantiate searchbox events
const searchBoxShow = new SearchBoxShow();
// Instantiate autosuggestion
const autoSuggestion = new AutoSuggestion();
// Instantiate search engine settings
const searchEngineSettings = new SearchEngineSettings();
// Instantiate center box
const centeredBox = new CenteredBox();
// Instantiate web menu
const webMenu = new WebMenu();
// Instantiate weather screen
const weatherScreen = new WeatherScreen();
// Instantiate weather settings
const weatherSettings = new WeatherSettings();
// Instantiate greeter message
const greeter = new GreeterDateMessage();
// Instantiate search send
const searchQuerySend = new SearchQuerySend();
// Instantiate theme engine
const themeEngine = new ThemeEngine();
// Instantiate dasbhoard
const dashboard = new Dashboard();
// Instantiate keybindings
const keyBindings = new KeyBinding();
// Instantiate swipe event
const swipeEventManager = new SwipeEventManager();
// Intantiate swipe event callbacks
const swipeEventCallbacks = new SwipeEventCallbacks();