mirror of
https://github.com/Grasscutters/GrassClipper.git
synced 2024-08-14 13:11:48 +08:00
18 lines
400 B
JavaScript
18 lines
400 B
JavaScript
async function fillDefaultBanners() {
|
|
await getBannerData()
|
|
|
|
const selectList = document.getElementById('bannerDefaultSelect')
|
|
|
|
for (const banner in bannerObj) {
|
|
const data = bannerObj[banner]
|
|
|
|
const option = document.createElement('option')
|
|
option.value = banner
|
|
option.innerText = banner
|
|
selectList.appendChild(option)
|
|
}
|
|
}
|
|
|
|
async function handleBaseBannerChange() {
|
|
|
|
} |