Mistake in mkEvent which makes all events only work once

pull/1/head
Caleb James DeLisle 2017-09-25 18:03:31 +02:00
parent a8eecee590
commit 1fd7a6e2b3
1 changed files with 1 additions and 1 deletions
www/common

View File

@ -16,7 +16,7 @@ define([], function () {
handlers.splice(handlers.indexOf(cb), 1);
},
fire: function () {
if (fired) { return; }
if (once && fired) { return; }
fired = true;
var args = Array.prototype.slice.call(arguments);
handlers.forEach(function (h) { h.apply(null, args); });