/** * Theme's main JS. * * @license https://opensource.org/licenses/MIT MIT * @author Vee W. */ // jQuery on DOM is ready. ------------------------------------------------------------------------------------------------ jQuery(document).ready(function($) { // mark no-js class as js because JS is working. $('html').removeClass('no-js').addClass('js'); });