2020-10-12 23:19:35 +00:00
|
|
|
import 'packs/public-path';
|
2019-09-30 14:38:12 +00:00
|
|
|
import loadPolyfills from 'flavours/glitch/util/load_polyfills';
|
|
|
|
import ready from 'flavours/glitch/util/ready';
|
2019-11-04 12:03:09 +00:00
|
|
|
import loadKeyboardExtensions from 'flavours/glitch/util/load_keyboard_extensions';
|
2022-06-28 07:42:13 +00:00
|
|
|
import 'cocoon-js-vanilla';
|
2019-09-30 14:38:12 +00:00
|
|
|
|
|
|
|
function main() {
|
2020-03-22 15:10:44 +00:00
|
|
|
const { delegate } = require('@rails/ujs');
|
2019-09-30 14:38:12 +00:00
|
|
|
|
|
|
|
delegate(document, '.sidebar__toggle__icon', 'click', () => {
|
2022-02-16 20:44:19 +00:00
|
|
|
document.querySelector('.sidebar ul').classList.toggle('visible');
|
2019-09-30 14:38:12 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-04 12:03:09 +00:00
|
|
|
loadPolyfills()
|
|
|
|
.then(main)
|
|
|
|
.then(loadKeyboardExtensions)
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|