Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: static/js/main.js

Issue 29485575: Issue 5385 - Create Site Header Component for Help Center (Closed)
Patch Set: Include site variables before website-defaults Created Sept. 1, 2017, 12:11 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « static/img/svg/search-icon.svg ('k') | static/js/vendor/classList.min.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 // Toggle Navbar Collapse
9 function toggleNavbarCollapse()
10 {
11 var navbarCollapseEls = this.parentElement.getElementsByClassName("navbar- collapse");
12 for (var i = 0; i < navbarCollapseEls.length; i++)
13 {
14 navbarCollapseEls[i]
15 .classList.toggle("open")
16 }
17 }
18
19 var toggleNavbarCollapseEls = document.getElementsByClassName("toggle-navbar -collapse");
20 for (var i = 0; i < toggleNavbarCollapseEls.length; i++)
21 {
22 toggleNavbarCollapseEls[i]
23 .addEventListener("click", toggleNavbarCollapse, false);
24 }
25
26 }, false);
27 }());
OLDNEW
« no previous file with comments | « static/img/svg/search-icon.svg ('k') | static/js/vendor/classList.min.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld