Yohann Streibel

Results 10 comments of Yohann Streibel

I created an helpers like this: ``` 'use strict'; module.exports = { ToUUID: ToUUID }; function ToUUID(hex) { var a = hex.substr(0, 2) + hex.substr(2, 2) + hex.substr(4, 2) +...

But what about the MathJax configuration ? `mathjaxNode.config({MathJax: {tex2jax: {inlineMath: [ ['$','$'], ['\\(','\\)'] ],processEscapes: true}}});`

Ok! So, could you add this in a feature request? Maybe fix the readme.md that say: ` MathJax: { } // standard MathJax configuration options, see https://docs.mathjax.org for more detail.`...

To create a workaround for zoom to fit feature, I tried to use : ``` pz.centerOn(myelement); pz.smoothZoom(window.innerWidth / 2 , window.innerHeight / 2, fit_computed_ratio); ``` It doesn't work because the...

hi @marcj 👋🏻, In your case, if your svg element has a previous animation with panzoom before your running code, the svg.getBoundingClientRect(); values could be wrong.

@marcj, I tried your code in mine and current animation isn't stopped. If you want to reproduce do ``` this.graphPanZoom = panzoom(inkSvg, { autocenter: true, bounds: true }); ``` just...

No animations right but transform is processing via `autocenter()` call. I try to made this [codepen](https://codepen.io/ykaribou/pen/XWbXJZx) to explain the fact . Feel free to contribute.

I compare the html renderer with your slider on your site http://prajwalkman.github.io/angular-slider/ : ``` 100.00 1000.00 350.00 ``` with my renderer : ``` ``` I have not value on bubble...

Hi, When I clic on undo/redo button, the pointer change from hand to pointer. More other, like a said previosly, when the cursor is text and I fly over the...

I couldn't use nfer's method but it's working for me like this : ``` ... ``` When I want to access to the selected index tab, I use : ```...