refactor: remove deprecated jQuery .ready() syntax (#2738)

jQuery 3 recommends `$( handler )` syntax.

Reference: https://api.jquery.com/ready/
This commit is contained in:
Nathan Knowler
2021-06-16 12:41:36 -05:00
committed by GitHub
parent 6d66debe17
commit 933f9ad8a5

View File

@@ -3,6 +3,6 @@
*/
import 'jquery';
$(document).ready(() => {
$(() => {
// console.log('Hello world');
});