You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove observables callbacks when kernel changes (fixes #)
With the notebook
```julia
using PlotlyJS, Observables
```
```julia
p = plot(scatter(;y=rand(20))
```
```julia
on(p["hover"]) do hover
@show hover
end
```
Run each cell, hover over several points to see everything working. There should be no errors in the browser console related to hover events.
Restart the kernel, and then hover over points again. There should be errors for every hover event.
0 commit comments