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.
2019-09-30 07:38:12 -07:00
|
|
|
import loadPolyfills from 'flavours/glitch/util/load_polyfills';
|
|
|
|
import ready from 'flavours/glitch/util/ready';
|
2019-11-04 04:03:09 -08:00
|
|
|
import loadKeyboardExtensions from 'flavours/glitch/util/load_keyboard_extensions';
|
2019-09-30 07:38:12 -07:00
|
|
|
|
|
|
|
function main() {
|
|
|
|
const { delegate } = require('rails-ujs');
|
|
|
|
|
|
|
|
delegate(document, '.sidebar__toggle__icon', 'click', () => {
|
|
|
|
const target = document.querySelector('.sidebar ul');
|
|
|
|
|
|
|
|
if (target.style.display === 'block') {
|
|
|
|
target.style.display = 'none';
|
|
|
|
} else {
|
|
|
|
target.style.display = 'block';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-04 04:03:09 -08:00
|
|
|
loadPolyfills()
|
|
|
|
.then(main)
|
|
|
|
.then(loadKeyboardExtensions)
|
|
|
|
.catch(error => {
|
|
|
|
console.error(error);
|
|
|
|
});
|