Skip to content
Snippets Groups Projects
Verified Commit f82f1154 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

fix: this[attributeObserverSymbol] = {}; should defined before

parent 2db562c6
No related branches found
No related tags found
No related merge requests found
...@@ -199,10 +199,10 @@ class CustomElement extends HTMLElement { ...@@ -199,10 +199,10 @@ class CustomElement extends HTMLElement {
constructor() { constructor() {
super(); super();
this[attributeObserverSymbol] = {};
this[internalSymbol] = new ProxyObserver({ this[internalSymbol] = new ProxyObserver({
options: initOptionsFromAttributes(this, extend({}, this.defaults)), options: initOptionsFromAttributes(this, extend({}, this.defaults)),
}); });
this[attributeObserverSymbol] = {};
initOptionObserver.call(this); initOptionObserver.call(this);
this[initMethodSymbol](); this[initMethodSymbol]();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment