hacker.tours-website/themes/zen/assets/js/script-early.js

14 lines
268 B
JavaScript
Raw Normal View History

2024-06-13 22:14:05 +02:00
/**
* @file
* A JavaScript file for the theme. Runs first, before other things have loaded.
*/
(function () {
'use strict';
// Add a js class to the html-tag when JavsScript is active.
document.querySelector('html').classList.replace('nojs', 'js');
})();