Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 (function(g) {
2 'use strict';
4 g.trapIdentityEvents = function(target) {
5 var state = {};
6 var identityEvents = ['idpassertionerror', 'idpvalidationerror',
7 'identityresult', 'peeridentity'];
8 identityEvents.forEach(function(name) {
9 target.addEventListener(name, function(e) {
10 state[name] = e;
11 }, false);
12 });
13 return state;
14 };
15 }(this));