2021-12-25 00:02:52 +01:00
|
|
|
import start from 'retrospring/common';
|
|
|
|
import initAnswerbox from 'retrospring/features/answerbox/index';
|
|
|
|
import initInbox from 'retrospring/features/inbox/index';
|
2021-12-25 03:33:09 +01:00
|
|
|
import initUser from 'retrospring/features/user';
|
2021-12-23 01:20:47 +01:00
|
|
|
import initSettings from 'retrospring/features/settings/index';
|
2021-12-28 21:12:33 +01:00
|
|
|
import initLists from 'retrospring/features/lists';
|
2020-12-26 18:16:08 +01:00
|
|
|
|
|
|
|
start();
|
2021-08-10 13:16:40 +02:00
|
|
|
document.addEventListener('turbolinks:load', initAnswerbox);
|
2022-01-03 15:04:23 +01:00
|
|
|
document.addEventListener('DOMContentLoaded', initInbox);
|
2021-12-28 21:12:33 +01:00
|
|
|
document.addEventListener('DOMContentLoaded', initUser);
|
2021-12-23 01:20:47 +01:00
|
|
|
document.addEventListener('turbolinks:load', initSettings);
|
2021-12-28 21:12:33 +01:00
|
|
|
document.addEventListener('DOMContentLoaded', initLists);
|