Allow passing arguments when firing events

pull/1/head
Caleb James DeLisle 7 years ago
parent b643ccc232
commit 72f03b2a47

@ -18,7 +18,8 @@ define([], function () {
fire: function () { fire: function () {
if (fired) { return; } if (fired) { return; }
fired = true; fired = true;
handlers.forEach(function (h) { h(); }); var args = Array.prototype.slice.call(arguments);
handlers.forEach(function (h) { h.apply(null, args); });
} }
}; };
}; };

Loading…
Cancel
Save