소스 검색

HUE-8230 [assist] Hide context popover just on vertical movement of the info icon

Enrico Berti 8 년 전
부모
커밋
570d87e676
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      desktop/core/src/desktop/templates/ko_components/ko_context_popover.mako

+ 1 - 1
desktop/core/src/desktop/templates/ko_components/ko_context_popover.mako

@@ -1090,7 +1090,7 @@ from metadata.conf import has_navigator
 
           var detectMoveInterval = window.setInterval(function () {
             currentSourceOffset = $source.offset();
-            if (currentSourceOffset.left !== originalSourceOffset.left || currentSourceOffset.top !== originalSourceOffset.top) {
+            if (currentSourceOffset.top !== originalSourceOffset.top) {
               hidePopover();
             }
           }, 200);