Is it possible (and how) to make another hamburger menu?
I know the basics of adding an icon into the mix, I did this to create a button for latest stuff, in :
<script type="text/discourse-plugin" version="0.4">
api.decorateWidget('header-icons:before', helper => {
return helper.h('li.header-dropdown-toggle', [
helper.h('a.icon#latest-button', {
href:'https://MYDOMAIN/latest',
title: 'Latest'
}, helper.h('i.fa.fa-bolt.latest-button-icon')),
]);
});
</script>
Is it possible, in a similar way, to make another menu?