enhance core tag API

This commit is contained in:
lxsang 2020-06-25 22:10:48 +02:00
parent c19fc26686
commit f00fdb2424

View File

@ -598,7 +598,8 @@ namespace OS {
$(this)
.children()
.each(function () {
return this.update(d);
if(this.update)
return this.update(d);
});
};
HTMLElement.prototype.sync = function (): void {