varbase_faqs-9.0.x-dev/js/script.js
js/script.js
/**
* @file
* Behaviors for the varbase_faqs.
*/
(function faqBehaviors($, _, Drupal) {
Drupal.behaviors.cat = {
attach() {
$(document).ready(function highlightActiveFaqCategory() {
// Make the faqcategories active based on the current path.
const path = window.location.pathname;
const target = $(`#block-faq-categories a[href="${path}"]`);
target.addClass('active');
});
},
};
})(window.jQuery, window._, window.Drupal);
