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
Avoid rendering tooltip/popover content into DOM until popper element created. (Fixes #341) This better matches the behavior of enableLazyRendering=true from ember-tooltips 2.x.
If you were using {{#if popover.isShown}} [...] {{/if}} checks or something similar to avoid rendering content in the DOM before the tooltip was rendered, you can remove those checks.
Under ember-fastboot, tooltip content will continue to be rendered into the DOM, though not visible.
Removals
hideDelay was deprecated in 3.x, scheduled to be removed in 3.2.0. Use popoverHideDelay, instead, as it only applies to popovers.