parent
a37de36fa6
commit
339071cb07
|
@ -50,8 +50,6 @@ export class CompileElement {
|
||||||
return this.inheritedElementBinder;
|
return this.inheritedElementBinder;
|
||||||
}
|
}
|
||||||
|
|
||||||
refreshAttrs() { this._attrs = null; }
|
|
||||||
|
|
||||||
attrs(): Map<string, string> {
|
attrs(): Map<string, string> {
|
||||||
if (isBlank(this._attrs)) {
|
if (isBlank(this._attrs)) {
|
||||||
this._attrs = DOM.attributeMap(this.element);
|
this._attrs = DOM.attributeMap(this.element);
|
||||||
|
@ -59,8 +57,6 @@ export class CompileElement {
|
||||||
return this._attrs;
|
return this._attrs;
|
||||||
}
|
}
|
||||||
|
|
||||||
refreshClassList() { this._classList = null; }
|
|
||||||
|
|
||||||
classList(): List<string> {
|
classList(): List<string> {
|
||||||
if (isBlank(this._classList)) {
|
if (isBlank(this._classList)) {
|
||||||
this._classList = [];
|
this._classList = [];
|
||||||
|
|
Loading…
Reference in New Issue