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