* Remove self from superview. * @return {View} Fluent interface
()
| 234 | * @return {View} Fluent interface |
| 235 | */ |
| 236 | removeFromSuperview () { |
| 237 | if (this._superview !== null) { |
| 238 | this._superview.removeSubview(this) |
| 239 | } |
| 240 | return this |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * Returns superview. |
no test coverage detected