/*jshint esversion: 6, strict: false */ import renderCharts from "charts"; import checkboxToggle from "checkbox_toggle"; import documentReady from "document_ready"; import showToasts from "toasts"; import setupPopovers from "popovers"; import LivePoll from "live_poll"; import { Application } from "stimulus"; window.Stimulus = Application.start(); documentReady(function() { renderCharts(); showToasts(); setupPopovers(); checkboxToggle(); const livePoll = new LivePoll livePoll.start(); });