Skip to content

Commit

Permalink
Restore explicit ANode prototype call
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarcos committed Oct 24, 2022
1 parent e95337c commit c6f2019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/a-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ANode extends HTMLElement {
document.addEventListener('DOMContentLoaded', this.connectedCallback.bind(this));
return;
}
this.doConnectedCallback();
ANode.prototype.doConnectedCallback.call(this);
}

doConnectedCallback () {
Expand Down

0 comments on commit c6f2019

Please sign in to comment.