mirror of
https://github.com/stevenjoezhang/live2d-widget.git
synced 2024-11-21 20:24:19 +08:00
Optimize cdnPath
check
This commit is contained in:
parent
53c1299b4d
commit
7a2f806695
@ -9,8 +9,12 @@ function loadWidget(config) {
|
||||
if (typeof cdnPath === "string") {
|
||||
useCDN = true;
|
||||
if (!cdnPath.endsWith("/")) cdnPath += "/";
|
||||
} else if (typeof apiPath === "string") {
|
||||
if (!apiPath.endsWith("/")) apiPath += "/";
|
||||
} else {
|
||||
console.error("Invalid initWidget argument!");
|
||||
return;
|
||||
}
|
||||
if (!apiPath.endsWith("/")) apiPath += "/";
|
||||
localStorage.removeItem("waifu-display");
|
||||
sessionStorage.removeItem("waifu-text");
|
||||
document.body.insertAdjacentHTML("beforeend", `<div id="waifu">
|
||||
@ -252,7 +256,7 @@ function loadWidget(config) {
|
||||
}
|
||||
}
|
||||
|
||||
function initWidget(config, apiPath = "/") {
|
||||
function initWidget(config, apiPath) {
|
||||
if (typeof config === "string") {
|
||||
config = {
|
||||
waifuPath: config,
|
||||
|
Loading…
Reference in New Issue
Block a user