* Injects subview's root element into own DOM structure. * @protected * @param {View} view * @return {PipeView} Fluent interface
(view)
| 105 | * @return {PipeView} Fluent interface |
| 106 | */ |
| 107 | appendSubviewElement (view) { |
| 108 | if (view instanceof BrickView) { |
| 109 | this.update() |
| 110 | return this |
| 111 | } |
| 112 | return super.appendSubviewElement(view) |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Removes previously added subview element from own DOM structure. |