| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 (function(){ | |
| 2 document.addEventListener("DOMContentLoaded", function() | |
| 3 { | |
| 4 | |
| 5 // Change html class name from "no-js" to "js" | |
| 6 document.documentElement.className = "js"; | |
| 7 | |
| 8 document.getElementById('toggle-search-form').addEventListener('click', func tion(e) { | |
| 9 e.preventDefault(); | |
| 10 document.getElementById('site-search').classList.toggle('open'); | |
| 11 }, false); | |
| 12 }, false); | |
| 13 }()); | |
| OLD | NEW |