* If `attr` is a component, then grab pre-parsed value from the cache. * Else do a normal getAttribute.
(attr)
| 89 | * Else do a normal getAttribute. |
| 90 | */ |
| 91 | getAttribute (attr) { |
| 92 | return this.componentCache[attr] || |
| 93 | window.HTMLElement.prototype.getAttribute.call(this, attr); |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Parse and cache every component defined on the mixin. |
no outgoing calls