| /*! |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| |
| // Mobile Menu Toggle |
| (function() { |
| const menuBtn = document.getElementById('mobile-menu-btn'); |
| const mobileNav = document.getElementById('mobile-nav'); |
| |
| if (menuBtn && mobileNav) { |
| menuBtn.addEventListener('click', () => { |
| const isActive = mobileNav.classList.contains('active'); |
| |
| if (isActive) { |
| mobileNav.classList.remove('active'); |
| menuBtn.innerHTML = ` |
| <svg fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> |
| </svg> |
| `; |
| menuBtn.setAttribute('aria-expanded', 'false'); |
| menuBtn.setAttribute('aria-label', 'Open mobile menu'); |
| } else { |
| mobileNav.classList.add('active'); |
| menuBtn.innerHTML = ` |
| <svg fill="none" stroke="currentColor" viewBox="0 0 24 24"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" /> |
| </svg> |
| `; |
| menuBtn.setAttribute('aria-expanded', 'true'); |
| menuBtn.setAttribute('aria-label', 'Close mobile menu'); |
| } |
| }); |
| } |
| })(); |