🐛 fix(TGWindow): 修复部分窗口打开不可见的问题

This commit is contained in:
BTMuli
2023-04-07 17:15:35 +08:00
parent a9a6eda4ae
commit 7a8c0892ea
6 changed files with 21 additions and 18 deletions

View File

@@ -138,7 +138,7 @@ function checkCover (data: GachaData[]) {
}
function toOuter (url: string, title: string) {
createTGWindow(url, "祈愿", title, 1200, 800, true);
createTGWindow(url, "祈愿", title, 1200, 800, true, false);
}
function getLastPoolTime (time: number) {
@@ -156,7 +156,7 @@ function toPost (pool: GachaCard) {
post_id: pool.post_id.toString(),
},
}).href;
createTGWindow(path, "限时祈愿", pool.title, 960, 720, false);
createTGWindow(path, "限时祈愿", pool.title, 960, 720, false, false);
}
</script>