更新内置软件源

This commit is contained in:
Super Manito
2026-04-16 12:40:40 +08:00
parent 2f446d984f
commit f1e1f766f8
13 changed files with 102 additions and 53 deletions

View File

@@ -1,6 +1,7 @@
const __p = typeof window !== 'undefined' && window.location && window.location.pathname ? window.location.pathname : ''
const __isZhHant = __p.includes('/zh-Hant')
const __isEn = __p.includes('/en')
const __isMobile = typeof window !== 'undefined' && typeof window.matchMedia === 'function' ? window.matchMedia('(max-width: 768px)').matches : false
// 防抖
function debounce(func, wait) {