Don't use JQuery in coin.js

This commit is contained in:
Jonathan Underwood 2021-12-17 08:48:36 +09:00
parent 9bac24f177
commit 308c0d5470

View File

@ -47,9 +47,9 @@
var cry = window.crypto || window.msCrypto;
if (!cry) {
/* Display warning message for 30 seconds */
$("#cryptoRandomStatus").removeClass("hidden");
document.getElementById('cryptoRandomStatus').classList.remove("hidden");
setTimeout(function(){
$("#cryptoRandomStatus").addClass("hidden");
document.getElementById('cryptoRandomStatus').classList.add("hidden");
}, 30000);
return '';