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

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

Issue 4859491858251776: Fix the approach used in ieFirstRun.js (Closed)
Patch Set: Use polyfill for addEventListener Created July 2, 2014, 8:40 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
(Empty)
1 if (typeof window.addEventListener != "function")
2 {
3 window.addEventListener = function(type, handler, capture)
4 {
5 this.attachEvent("on" + type, handler)
6 };
7 }
8
9 if (typeof window.removeEventListener != "function")
10 {
11 window.removeEventListener = function(type, handler)
12 {
13 this.detachEvent("on" + type, handler)
14 };
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld