Adding new filter icon (#20762)

This commit is contained in:
Aasim Khan
2022-10-06 21:34:21 -07:00
committed by GitHub
parent 00ff3ac50f
commit 9f5ee32825
11 changed files with 85 additions and 20 deletions

View File

@@ -267,14 +267,11 @@ export class ExecutionPlanView implements ISashLayoutProvider {
* use the scroll bars.
*/
diagramContainer.addEventListener('wheel', e => {
this._parent.scrollTop += e.deltaY;
//Hiding all tooltips when we scroll.
const element = document.getElementsByClassName('mxTooltip');
for (let i = 0; i < element.length; i++) {
(<HTMLElement>element[i]).style.visibility = 'hidden';
}
e.preventDefault();
e.stopPropagation();
});
this._planContainer.appendChild(diagramContainer);