Small fix for 2 level sidebar category menu... (reBOOT v4.7.3)
In skin/reboot/js/custom/reboot.js
Replace...
Code:
$("#sliding_alt").on('hidden.bs.collapse', function () {
$.removeCookie('activeCategory');
});
With...
Code:
$("#sliding_alt").on('hidden.bs.collapse', function () {
$.removeCookie('activeCategory', { path: '/' });
});
Previously it wasn't deleting the menu cookie correctly.