chart_plugins
1 year ago
controllers
5 months ago
modules
9 months ago
utils
9 months ago
click-tracking-menu.js
1 year ago
dashboard_widget.js
2 years ago
download.js
1 year ago
index.js
5 months ago
layout.js
1 year ago
settings.js
1 year ago
layout.js
15 lines
| 1 | import { ScrollToTop } from './modules/scroll-to-top'; |
| 2 | import { Notices } from './modules/notices'; |
| 3 | import { StickySidebar } from './modules/sticky-sidebar'; |
| 4 | import { Support } from './modules/support'; |
| 5 | import { DatePicker } from './modules/date-picker'; |
| 6 | import { Overview } from './modules/overview'; |
| 7 | |
| 8 | jQuery(function($) { |
| 9 | StickySidebar.setup(); |
| 10 | Notices.setup(); |
| 11 | ScrollToTop.setup(); |
| 12 | Support.setup(); |
| 13 | DatePicker.setup(); |
| 14 | Overview.setup(); |
| 15 | }); |