dom/media/tests/identity/identityevent.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

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));

mercurial