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

Delta Between Two Patch Sets: html/static/js/ieEventListenerPolyfill.js

Issue 4859491858251776: Fix the approach used in ieFirstRun.js (Closed)
Left Patch Set: Created March 21, 2014, 4:58 p.m.
Right Patch Set: Formatting nit addressed Created July 16, 2014, 11:19 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « html/static/js/firstRun.js ('k') | html/static/js/ieFirstRun.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
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 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld