* Returns root element. * @return {?HTMLElement}
()
| 68 | * @return {?HTMLElement} |
| 69 | */ |
| 70 | getElement () { |
| 71 | if (this._$root === null) { |
| 72 | this.willRender() |
| 73 | this._$root = this.render() |
| 74 | this.didRender() |
| 75 | } |
| 76 | return this._$root |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Rerenders the view. |
no test coverage detected