Commit 302c436f authored by minseok.park's avatar minseok.park

test nav

parent fcad5113
Pipeline #21641 passed with stages
in 3 minutes and 54 seconds
......@@ -44,6 +44,11 @@
var li = this.parentElement
var currentDepth = parseInt(li.dataset.depth, 10) // 현재 nav-item의 depth 가져오기
// 이미 'is-active' 클래스가 있거나 현재 navItem이 currentPageItem과 같은 경우 액션 수행 안 함
if (li.classList.contains('is-active') || li === currentPageItem) {
return // 액션을 수행하지 않고 종료
}
// href가 '#'인 경우 (클릭한 항목이 단순 펼침 액션 대상일 때)
if (this.getAttribute('href') === '#') {
// 다음 depth의 항목을 찾음 (현재 depth + 1)
......
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