(dispatchAction: ExtensionAPI['dispatchAction'])
| 1032 | } |
| 1033 | |
| 1034 | private _hide(dispatchAction: ExtensionAPI['dispatchAction']) { |
| 1035 | // Do not directly hideLater here, because this behavior may be prevented |
| 1036 | // in dispatchAction when showTip is dispatched. |
| 1037 | |
| 1038 | // FIXME |
| 1039 | // duplicated hideTip if manuallyHideTip is called from dispatchAction. |
| 1040 | this._lastDataByCoordSys = null; |
| 1041 | this._cbParamsList = null; |
| 1042 | dispatchAction({ |
| 1043 | type: 'hideTip', |
| 1044 | from: this.uid |
| 1045 | }); |
| 1046 | } |
| 1047 | |
| 1048 | dispose(ecModel: GlobalModel, api: ExtensionAPI) { |
| 1049 | if (env.node || !api.getDom()) { |
no test coverage detected