Fix missing function call for no-js class removal

pull/1/head
Tristan Daniël Maat 2020-04-13 23:14:36 +01:00
parent a357728358
commit 5d4ed8e167
Signed by: tlater
GPG Key ID: 49670FD774E43268
1 changed files with 1 additions and 1 deletions

View File

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