This commit is contained in:
Dany LE
2021-11-24 23:42:55 +01:00
parent d208aea1b9
commit 64094c29d5
3 changed files with 3 additions and 6 deletions

View File

@ -263,10 +263,7 @@ namespace OS {
}
this.observable[evt].one.forEach((f) => f(d));
this.observable[evt].one = new Set();
this.observable[evt].many.forEach((f) => {
console.log(f, d);
f(d)
});
this.observable[evt].many.forEach((f) => f(d));
}
};
if (evtName === "*") {