Michael Sander

Results 43 comments of Michael Sander

I know it's a decade old, but accessibility features are more important now than ever. If there is any way I can help, would be happy to contribute.

Any chance this update function will get implemented any time soon? Replacing the powerTip content has issues. This example illustrates: Suppose you have two links on the screen A and...

I created a jsfiddle where you can see this bug: https://jsfiddle.net/ojkkj8Le/ Try scrolling over the blue path. Notice how the powertip appears and then disappears.

It's still disappearing for me. Try moving your mouse below the middle of the svg (see updated fiddle): https://jsfiddle.net/e6217g42/

Actually, try this jsfiddle: https://jsfiddle.net/e6217g42/2/

Yes Chrome. It does seem complicated, my Monkey hack only works for non-rotated paths, and only does height, not width. You may want to consider turning off the desync check...

Here is a screenshot with the problem: ![image](https://f.cloud.github.com/assets/671052/907838/531f125e-fd68-11e2-9183-51544e2ca3a0.png) And here it is after applying my fix: ![image](https://f.cloud.github.com/assets/671052/907841/66c62996-fd68-11e2-9e26-2d194815f11b.png)

It's an easy fix too, just add two lines in `showTip`: ``` // set tooltip position if (!options.followMouse) { positionTipOnElement(element); session.isFixedTipOpen = true; } else { positionTipOnCursor(); } // trigger...

Actually, I need a slight change to the above, because the elements need to be visible to have their attributes set: ``` // trigger powerTipPreOpen event tipElement.show(); element.trigger('powerTipPreOpen'); tipElement.hide(); ```

If you don't call `show` beforehand, then the width and the height of the powertip DOM element won't be set properly in the `powerTipPreOpen` command. This isn't a problem for...