document.addEventListener('DOMContentLoaded', function () {
// When OffCanvas opens, re-initialize Slinky Menu
jQuery(document).on("wpr-offcanvas-open", function () {
setTimeout(function () {
jQuery('.bdt-slinky-vertical-menu').each(function () {
if (jQuery(this).data('slinky')) {
jQuery(this).data('slinky').destroy();
}
jQuery(this).slinky({
title: true,
speed: 300
});
});
}, 300);
});
});