vartheme_bs4-8.x-6.10/js/bootstrap_barrio/sidebar-collapse.js
js/bootstrap_barrio/sidebar-collapse.js
/**
* @file
* Sidebar collapse.
* http://www.bootply.com/88026
*
*/
(function ($, Drupal) {
'use strict';
Drupal.behaviors.bootstrap_barrio_sidebar = {
attach: function (context, settings) {
$('[data-toggle=offcanvas]').click(function() {
$('.row-offcanvas').toggleClass('active');
});
}
};
})(jQuery, Drupal);
