diff --git a/www/common/common-util.js b/www/common/common-util.js index 4015fbfe4..c6cbe4055 100644 --- a/www/common/common-util.js +++ b/www/common/common-util.js @@ -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); });