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

Side by Side Diff: html/static/js/settings.js

Issue 11276031: FRP wrappers. "Update" menu item. (Closed)
Patch Set: Created Aug. 1, 2013, 2:29 a.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
1 "use strict"; 1 "use strict";
2 2
3 function addListener(element, eventType, callback, propagate) 3 function addListener(element, eventType, callback, propagate)
4 { 4 {
5 if (element.addEventListener) 5 if (element.addEventListener)
6 { 6 {
7 element.addEventListener(eventType, callback, propagate); 7 element.addEventListener(eventType, callback, propagate);
8 } 8 }
9 else 9 else
10 { 10 {
(...skipping 20 matching lines...) Expand all
31 31
32 // IE6-only 32 // IE6-only
33 if (exceptions.getAttribute("className")) 33 if (exceptions.getAttribute("className"))
34 exceptions.removeAttribute("className"); 34 exceptions.removeAttribute("className");
35 else 35 else
36 exceptions.setAttribute("className", "visible"); 36 exceptions.setAttribute("className", "visible");
37 } 37 }
38 38
39 init(); 39 init();
40 })(); 40 })();
OLDNEW

Powered by Google App Engine
This is Rietveld