Commit 9450db34 authored by minseok.park's avatar minseok.park

로컬 파일 UI 테스트

parent 7e1ac9b3
Pipeline #21373 passed with stages
in 4 minutes and 20 seconds
...@@ -60,9 +60,8 @@ ...@@ -60,9 +60,8 @@
` `
// 네트워크 상태 확인 및 버튼 제어 // 네트워크 상태 확인 및 버튼 제어
function toggleChatButton () { function checkIfLocalFile () {
console.log(navigator.onLine) if (window.location.protocol === 'file:') {
if (!navigator.onLine) {
chatButton.style.display = 'none' // 오프라인 상태면 chatButton 숨김 chatButton.style.display = 'none' // 오프라인 상태면 chatButton 숨김
} else { } else {
chatButton.style.display = 'flex' // 온라인 상태면 chatButton 보이게 함 chatButton.style.display = 'flex' // 온라인 상태면 chatButton 보이게 함
...@@ -70,11 +69,7 @@ ...@@ -70,11 +69,7 @@
} }
// 초기 상태 설정 // 초기 상태 설정
toggleChatButton() checkIfLocalFile()
// 네트워크 상태 변경 이벤트 리스너
window.addEventListener('online', toggleChatButton)
window.addEventListener('offline', toggleChatButton)
chatButton.addEventListener('click', () => { chatButton.addEventListener('click', () => {
chat.classList.toggle('show') chat.classList.toggle('show')
......
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