File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ export class DataTipManager {
200
200
this . editor = null
201
201
this . editorView = null
202
202
203
- if ( editor == null || ! atom . workspace . isTextEditor ( editor ) ) {
203
+ if ( editor === null || ! atom . workspace . isTextEditor ( editor ) ) {
204
204
return
205
205
}
206
206
@@ -263,7 +263,7 @@ export class DataTipManager {
263
263
264
264
this . mouseMoveTimer = setTimeout (
265
265
( evt ) => {
266
- if ( this . editorView == null || this . editor == null ) {
266
+ if ( this . editorView === null || this . editor = == null ) {
267
267
return
268
268
}
269
269
@@ -345,7 +345,7 @@ export class DataTipManager {
345
345
this . unmountDataTip ( )
346
346
} else {
347
347
// omit update of UI if the range is the same as the current one
348
- if ( this . currentMarkerRange != null && datatip . range . intersectsWith ( this . currentMarkerRange ) ) {
348
+ if ( this . currentMarkerRange !== null && datatip . range . intersectsWith ( this . currentMarkerRange ) ) {
349
349
return
350
350
}
351
351
// make sure we are still on the same position
You can’t perform that action at this time.
0 commit comments