Fix missing function call for no-js class removal
This commit is contained in:
parent
a357728358
commit
5d4ed8e167
1 changed files with 1 additions and 1 deletions
|
@ -1,3 +1,3 @@
|
|||
import $ from "jquery";
|
||||
|
||||
$(document).ready($("html").removeClass("no-js"));
|
||||
$(document).ready(() => $("html").removeClass("no-js"));
|
||||
|
|
Reference in a new issue