Damien Maillard

Results 58 comments of Damien Maillard

Thank you very much for your answer and rewording the issue title, it's more accurate. In my case the iframe runs in an other domain so window.parent would not be...

I have opened a draft pull request. For now I have only tested to add all_frames: true on chrome extension manifest.json and it looks like it's working -> react is...

Working on edge 🎉 About firefox however I have some trouble. I have changed nothing yet concerning firefox and after doing 1. yarn build:firefox 2. yarn run test:firefox In the...

About firefox I got workarounds depending what happens: (a) Firefox addon is shown but fails to detect react -> refresh the page and it will work normally (b) Firefox addon...

I'm putting pull request in ready for review.

Hello, the pull request is on hold because I don't know what to tackle first. On my side I was waiting for advice to restart working on it. Go ahead,...

For the record all_frames: true was inspired from preact-devtools. It might be interesting to see how preact use it and make things work. Out of my abilities.

I faced the same issue, a quick fix is to go [#L1472](https://github.com/seiyria/bootstrap-slider/blob/v5.0.13/js/bootstrap-slider.js#L1472) ``` javascript offsetTop += obj.offsetTop; ``` And replace it by ``` javascript offsetTop += obj.offsetTop - obj.scrollTop; ```...

To me this issue is resolved by https://github.com/davewasmer/devcert/pull/24. There is no strategy about root certificate expiring after 7000 days but that's less important than when they expired after 1 month...

Got the same issue when updating preact from `10.0.0` to `10.0.6`. I end up with two copies of preact in the node_modules, see output of `npm explain` below ```console npm...