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: Unfix header, implement standard spacing units Created Aug. 16, 2017, 2:37 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
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 document.getElementById('toggle-search-form').addEventListener('click', func tion(e) {
juliandoucette 2017/08/18 15:03:56 NIT: This doesn't seem to fit on one line.
ire 2017/08/21 15:23:20 Is it supposed to? That depends on the size of the
juliandoucette 2017/08/21 16:28:40 We follow Mozilla's rule regarding the line length
ire 2017/08/22 12:15:15 Okay. I will switch to your style of new lines the
9 e.preventDefault();
10 document.getElementById('site-search').classList.toggle('open');
juliandoucette 2017/08/18 15:03:56 NIT: I usually chain on newlines e.g. document
juliandoucette 2017/08/18 15:03:56 NIT: Our code style specifies double quotes :( (I
ire 2017/08/21 15:23:20 Okay. I like to use new lines like that for things
ire 2017/08/21 15:23:20 Done.
11 }, false);
12 }, false);
13 }());
OLDNEW

Powered by Google App Engine
This is Rietveld