Commit 20abfb90 authored by minseok.park's avatar minseok.park

rollback

parent 58af47f0
Pipeline #20684 passed with stages
in 3 minutes and 44 seconds
;(function () { // ;(function () {
'use strict' // 'use strict'
const logo = document.getElementById('logo') // const logo = document.getElementById('logo')
function getCookie (name) { // function getCookie (name) {
const cookies = document.cookie.split(';') // const cookies = document.cookie.split(';')
for (let i = 0; i < cookies.length; i++) { // for (let i = 0; i < cookies.length; i++) {
const cookie = cookies[i].trim() // const cookie = cookies[i].trim()
if (cookie.startsWith(name + '=')) { // if (cookie.startsWith(name + '=')) {
return cookie.substring(name.length + 1) // return cookie.substring(name.length + 1)
} // }
} // }
return null // return null
} // }
document.addEventListener('DOMContentLoaded', function () { // document.addEventListener('DOMContentLoaded', function () {
const jsessionid = getCookie('JSESSIONID') // const jsessionid = getCookie('JSESSIONID')
if (jsessionid) { // if (jsessionid) {
// JSESSIONID 쿠키 값이 있을 경우 추가할 a 태그 생성 // // JSESSIONID 쿠키 값이 있을 경우 추가할 a 태그 생성
const newLink = document.createElement('a') // const newLink = document.createElement('a')
newLink.className = 'navbar-item' // newLink.className = 'navbar-item'
newLink.href = 'https://swlab.bwg.co.kr/web/docs/bxm/swlab-docs-bxm-s/current/concepts/overview.html' // newLink.href = 'https://swlab.bwg.co.kr/web/docs/bxm/swlab-docs-bxm-s/current/concepts/overview.html'
newLink.textContent = 'BXM Concepts Overview' // newLink.textContent = 'BXM Concepts Overview'
// 기존 BXM 링크 바로 아래에 삽입 // // 기존 BXM 링크 바로 아래에 삽입
const bxmLink = document.querySelector( // const bxmLink = document.querySelector(
'.navbar-dropdown .navbar-item[href="https://swlab.bwg.co.kr/web/docs/bxm/swlab-docs-bxm/current/index.html"]' // '.navbar-dropdown .navbar-item[href="https://swlab.bwg.co.kr/web/docs/bxm/swlab-docs-bxm/current/index.html"]'
) // )
if (bxmLink) { // if (bxmLink) {
bxmLink.insertAdjacentElement('afterend', newLink) // bxmLink.insertAdjacentElement('afterend', newLink)
} // }
} // }
// logo 클릭 이벤트 // // logo 클릭 이벤트
logo.addEventListener('click', function (event) { // logo.addEventListener('click', function (event) {
if (jsessionid) { // if (jsessionid) {
// JSESSIONID 쿠키 값이 있을 경우 // // JSESSIONID 쿠키 값이 있을 경우
window.location.href = 'https://swlab.bwg.co.kr/web/dms/home' // window.location.href = 'https://swlab.bwg.co.kr/web/dms/home'
} else { // } else {
// JSESSIONID 쿠키 값이 없을 경우 // // JSESSIONID 쿠키 값이 없을 경우
window.location.href = 'https://swlab.bwg.co.kr/web/main/' // window.location.href = 'https://swlab.bwg.co.kr/web/main/'
} // }
}) // })
}) // })
})() // })()
<header class="header"> <header class="header">
<nav class="navbar"> <nav class="navbar">
<div class="navbar-brand"> <div class="navbar-brand">
{{!-- <a class="navbar-item" href="https://swlab.bwg.co.kr/"> --}} <a class="navbar-item" href="https://swlab.bwg.co.kr/">
<a id="logo" class="navbar-item"> {{!-- <a id="logo" class="navbar-item"> --}}
<i class="navbar-logo"></i> <i class="navbar-logo"></i>
<div class="navbar-title-contents"> <div class="navbar-title-contents">
<span class="navbar-title">SWLab</span> <span class="navbar-title">SWLab</span>
......
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