Commit e1ad7da1 authored by minseok.park's avatar minseok.park

update check-offline -- hide element

parent 9450db34
Pipeline #21380 passed with stages
in 3 minutes and 51 seconds
......@@ -59,18 +59,6 @@
</path>
`
// 네트워크 상태 확인 및 버튼 제어
function checkIfLocalFile () {
if (window.location.protocol === 'file:') {
chatButton.style.display = 'none' // 오프라인 상태면 chatButton 숨김
} else {
chatButton.style.display = 'flex' // 온라인 상태면 chatButton 보이게 함
}
}
// 초기 상태 설정
checkIfLocalFile()
chatButton.addEventListener('click', () => {
chat.classList.toggle('show')
......
/* eslint-disable no-undef */
;(function () {
'use strict'
const chatButton = document.querySelector('.sidebar .chat-btn')
const menu = document.querySelector('.navbar-menu')
// 네트워크 상태 확인 및 버튼 제어
function checkIfLocalFile () {
if (window.location.protocol === 'file:') {
chatButton.style.display = 'none' // 오프라인 상태면 chatButton 숨김
menu.style.display = 'none'
} else {
chatButton.style.display = 'flex' // 온라인 상태면 chatButton 보이게 함
menu.style.display = 'flex'
}
}
// 초기 상태 설정
checkIfLocalFile()
})()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment