From 5565d0a11e05e24cf617084a042d932b565fd389 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 8 Sep 2017 20:01:11 +0200 Subject: [PATCH] fix space in loop --- Event/EventManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Event/EventManager.js b/Event/EventManager.js index 23b3df6..0505062 100644 --- a/Event/EventManager.js +++ b/Event/EventManager.js @@ -60,7 +60,7 @@ */ jsOMS.Event.EventManager.prototype.reset = function (group) { - for (let id in this.groups[group]) { + for (let id in this.groups[group]) { if (this.groups[group].hasOwnProperty(id)) { this.groups[group][id] = false; }