* Removes previously added subview element from own DOM structure. * @protected * @param {View} view * @return {PipeView} Fluent interface
(view)
| 119 | * @return {PipeView} Fluent interface |
| 120 | */ |
| 121 | removeSubviewElement (view) { |
| 122 | super.removeSubviewElement(view) |
| 123 | if (view instanceof BrickView) { |
| 124 | this.update() |
| 125 | } |
| 126 | return this |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Integrates brick view elements inside pipe structure. |