diff --git a/src/core/tags/tag.ts b/src/core/tags/tag.ts index 9ba7bbd..adc6b21 100644 --- a/src/core/tags/tag.ts +++ b/src/core/tags/tag.ts @@ -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 {