* Deactivate item.
()
| 9938 | /** |
| 9939 | * Deactivate item. |
| 9940 | */ deActivate() { |
| 9941 | return new Promise((resolve, reject)=>{ |
| 9942 | if (this._dataScope && this._dataScope.active) this._animator.deactivate().then(()=>{ |
| 9943 | this._details.render(); |
| 9944 | resolve(); |
| 9945 | }); |
| 9946 | else resolve(); |
| 9947 | }); |
| 9948 | } |
| 9949 | /** |
| 9950 | * Gets the current insight with signal values. |
| 9951 | */ getInsight() { |
no test coverage detected