openchurch_theme-3.0.0-alpha3/js/openchurch-theme.js
js/openchurch-theme.js
/**
* @file
* OpenChurch Theme behaviors.
*/
(function (Drupal) {
'use strict';
Drupal.behaviors.openchurchTheme = {
attach: function (context, settings) {
document.addEventListener("scroll", (event) => {
let scroll = window.scrollY;
if (scroll > 50) {
document.querySelector('header').classList.add('scrolled');
} else {
document.querySelector('header').classList.remove('scrolled');
}
});
}
};
} (Drupal));
