calebjacob / tooltipster

A jQuery tooltip plugin
MIT License
2.76k stars 482 forks source link

Refresh page add child class to parent in production #814

Closed pacocom closed 3 years ago

pacocom commented 3 years ago

When I refresh the page the element parent adding child class in production:

Before refresh page: image

After refresh page: image

...
  tooltip,
  delay = 300,
  interactive = false,
  interactiveTolerance = 350,
  side = 'top',
  theme = '',
...

    <Tooltipster
      content={<>{tooltip}</>}
      delay={delay}
      interactive={interactive}
      interactiveTolerance={interactiveTolerance}
      side={side}
      theme={`tooltipster-shadow tooltipster-custom ${theme}`.trim()}>
      {children}
    </Tooltipster>

Why? How to solve it?

louisameline commented 3 years ago

Not due to Tooltipster.