Remove the no-js class if there is JavaScript.

This commit is contained in:
Oliver Davies 2016-04-19 23:30:44 +01:00
parent 415b202c82
commit cf7f3c9bb4

4
assets/js/main.js Normal file
View file

@ -0,0 +1,4 @@
(function ($) {
// Update the HTML classes.
$('html.no-js').removeClass('no-js').addClass('js');
})(jQuery);