Run the truncate function after DOM is ready

This commit is contained in:
Alex Ling 2020-04-01 04:48:53 +00:00
parent 68d1b55aea
commit 27c6e02da8

View File

@ -6,4 +6,6 @@ const truncate = () => {
}); });
}; };
truncate(); $(() => {
truncate();
});