dom/media/tests/identity/identityevent.js

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     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