-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mouseover for plot does not go away when changing from scalars to images #3753
Comments
Acknowledging the bug. This is a known issue and the regression happened when we upgraded the Polymer v2 (where we use the real shadow DOM). Event handling got trickier with the shadow DOM and there is no good solution other than (1) IntersectionObserver and (2) maybe a global event handler. |
Also suffering from this issue. It's not specific to just switching between those tabs - looks more like if mouseout happens in some way Tensorboard didn't expect, the label just hangs on in there. I can get rid of the tooltip by going back to the same graph that made it, and mouseovering and mouseouting out of it again slower. |
This is bugging me a lot too. If you have many logging graphs, finding the one that caused the issue, then mouse-in and mouse-out to get rid of the tooltip can be really bothersome. |
While I wish I had the web expertise to propose a proper PR, to anyone else who might encounter this issue, here's a "dumb" hack around it. You can use the following snippet and create a bookmarklet from them:
The above adds two event listeners, a "mouse leave" event for existing the window and a "mouse enter" event when going over the header at the top of Tensorboard. When one of the events fires, it will hide all tooltips by setting their opacity to 0. You could use any bookmarklet converter website to convert the above code into a bookmarklet, and then you can "fix" this problem by activating it each time you open Tensorboard (or refresh the page). |
The reproduction steps are:
The tooltip will stay there until you move back to the scalar tab or the page autoreloads. This can be very annoying for longer tooltips!
Chrome 83, running on a Pixelbook.
The text was updated successfully, but these errors were encountered: