feat: burg group editor - form

This commit is contained in:
Azgaar 2024-10-07 01:32:01 +02:00
parent d8009f84ad
commit 511d8f37d8
3 changed files with 81 additions and 86 deletions

View file

@ -2,8 +2,10 @@ const byId = document.getElementById.bind(document);
Node.prototype.on = function (name, fn, options) {
this.addEventListener(name, fn, options);
return this;
};
Node.prototype.off = function (name, fn) {
this.removeEventListener(name, fn);
return this;
};