Fix missing function call for no-js class removal

This commit is contained in:
Tristan Daniël Maat 2020-04-13 23:14:36 +01:00
parent a357728358
commit 5d4ed8e167
Signed by: tlater
GPG key ID: 49670FD774E43268

View file

@ -1,3 +1,3 @@
import $ from "jquery"; import $ from "jquery";
$(document).ready($("html").removeClass("no-js")); $(document).ready(() => $("html").removeClass("no-js"));