tether
tether copied to clipboard
A positioning engine to make overlays, tooltips and dropdowns better
Presently `outOfBoundsClass` and `pinnedClass` are ignored. This PR fixes that.
I have a site with a sticky navigation header at top which is overlayed on the page using z-index and position: fixed and top: 0px. The problem is that my...
It's a stack of 3 bars at the top of the viewport. HEIGHTS * adminbar: 32px * `target`: 55px * `element` BAD TETHER RESULT `transform: translateX(0px) translateY(85px) translateZ(0px)` CORRECT RESULT...
I have a tooltip positioned on the right of an element inside a box set as constraint. When the tooltip has not space on its right, I'd like to move...
If the attachment width is greater than the target width the `attachment: together` constraint doesn't act as expected. It should essentially have the opposite behavior. Video example: https://vts-monosnap.s3.amazonaws.com/screencast_2016-11-18_12-12-42.mp4
Hello everyone, In our project we have a lot of tethered elements (30+) and the goal is to make them visible when they're inside the parent element. Everything work fine...
If you create a Tether instance with the default `classPrefix`, `"tether"`, it'll have the class `tether-target`. If you then call `setOptions{classPrefix: "myprefix"}`, it'll get the class `myprefix-target`… but will still...
In some navigators, when a new Tether class is instantiated the following error occurs: ``` getComputedStyle(...) is null ``` in this [line of code](https://github.com/HubSpot/tether/blob/master/src/js/tether.js#L755). I could log errors that occur...
I'm using a target with 'position : fixed' but I've noticed something strange on element positioning. I'd expect the element position to be always fixed (as far as the target...
I noticed https://github.com/HubSpot/tether/blob/master/src/js/utils.js#L41 and I'm really just curious to know why the target is considered the scroll parent if it is `position: fixed`.