mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 20:30:53 +08:00
fix: 修復tabs 標簽外挂設爲-1時,按鈕點擊沒反應的bugs
This commit is contained in:
@@ -88,8 +88,9 @@ document.addEventListener('DOMContentLoaded', function () {
|
||||
translateButtonObject = document.getElementById('translateLink')
|
||||
if (translateButtonObject) {
|
||||
if (currentEncoding !== targetEncoding) {
|
||||
setTimeout(function () { translateBody() }, translateDelay)
|
||||
if (targetEncoding === 1) { translateButtonObject.innerHTML = msgToSimplifiedChinese } else translateButtonObject.innerHTML = msgToTraditionalChinese
|
||||
setTimeout(translateBody, translateDelay)
|
||||
if (targetEncoding === 1) translateButtonObject.innerHTML = msgToSimplifiedChinese
|
||||
else translateButtonObject.innerHTML = msgToTraditionalChinese
|
||||
}
|
||||
translateButtonObject.addEventListener('click', translatePage, false)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user