This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-10-12 16:19:35 -07:00
|
|
|
import 'packs/public-path';
|
2022-10-11 02:39:52 -07:00
|
|
|
import loadPolyfills from 'flavours/glitch/load_polyfills';
|
2022-10-11 02:23:59 -07:00
|
|
|
import ready from 'flavours/glitch/ready';
|
2022-10-11 02:39:52 -07:00
|
|
|
import loadKeyboardExtensions from 'flavours/glitch/load_keyboard_extensions';
|
2022-06-28 00:42:13 -07:00
|
|
|
import 'cocoon-js-vanilla';
|
2019-09-30 07:38:12 -07:00
|
|
|
|
|
|
|
function main() {
|
2020-03-22 08:10:44 -07:00
|
|
|
const { delegate } = require('@rails/ujs');
|
2019-09-30 07:38:12 -07:00
|
|
|
|
|
|
|
delegate(document, '.sidebar__toggle__icon', 'click', () => {
|
2022-02-16 12:44:19 -08:00
|
|
|
document.querySelector('.sidebar ul').classList.toggle('visible');
|
2019-09-30 07:38:12 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-04 04:03:09 -08:00
|
|
|
loadPolyfills()
|
|
|
|
.then(main)
|
|
|
|
.then(loadKeyboardExtensions)
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|