Drop $.ajax

This commit is contained in:
Mimi 2019-12-22 10:15:16 +08:00
parent 0d480a76f6
commit f1953d6d19
2 changed files with 4 additions and 6 deletions

View File

@ -28,11 +28,9 @@ function loadWidget(waifuPath, apiPath) {
if (!window.ASTEROIDSPLAYERS) window.ASTEROIDSPLAYERS = []; if (!window.ASTEROIDSPLAYERS) window.ASTEROIDSPLAYERS = [];
window.ASTEROIDSPLAYERS.push(new Asteroids()); window.ASTEROIDSPLAYERS.push(new Asteroids());
} else { } else {
$.ajax({ var script = document.createElement('script');
url: "https://cdn.jsdelivr.net/gh/GalaxyMimi/CDN/asteroids.js", script.src = "https://cdn.jsdelivr.net/gh/GalaxyMimi/CDN/asteroids.js";
dataType: "script", document.head.appendChild(script);
cache: true
});
} }
}); });
document.querySelector("#waifu-tool .fa-user-circle").addEventListener("click", loadOtherModel); document.querySelector("#waifu-tool .fa-user-circle").addEventListener("click", loadOtherModel);