Commit 7a02a858 authored by 박민석's avatar 박민석

test offline ui

parent 0c8ecb5c
Pipeline #21864 passed with stages
in 4 minutes and 22 seconds
/* eslint-disable no-undef */
;(function () {
'use strict'
const chatButton = document.querySelector('.sidebar .chat-btn')
const menu = document.querySelector('.navbar-menu')
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'
}
// 네트워크 상태 확인 및 버튼 제어
function checkIfLocalFile () {
if (window.location.protocol === 'file:') {
chatButton.style.display = 'none' // 오프라인 상태면 chatButton 숨김
menu.style.display = 'none'
}
}
// 초기 상태 설정
checkIfLocalFile()
})()
// 초기 상태 설정
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