Ryan Jentzsch

Results 31 comments of Ryan Jentzsch

@zor1984qq I got past the errors in your log vomit by forcing g++ version 8: `CC=g++-8 make -f source/linux/Makefile compile` However this results in new (and maybe improved) log vomit:...

react-new-window is using `ReactDOM.createPortal()`. To get your new window to be the parent of another modal(portal) you may need to use the same technique. See: https://reactjs.org/docs/portals.html

> Hello! any luck with this issue? My popups are showing in the parent window, not in the new one. Thanks in advance. Do you have an example in https://codesandbox.io/...

You can use a reference to set focus to the popup window like this (TypeScript): ```tsx const newWindowRef = useRef(null); useEffect(() => { if (newWindowRef && newWindowRef.current) { const currentWindow...

Not sure if this is a solution but have you tried `features={{dependent:true}}` ? https://developer.mozilla.org/en-US/docs/Web/API/Window/open#Window_features

Even with this PR there are many places where there is a dependency mismatch (usually where `common` is in the path and `src` is actually the correct path). This leaves...

> Dont worry be happy! Thanks. I'm happy now! 😁

> A good solution may be to move `@types/react` to a peer dependency that supports either 16.x or 17.x, as bumping it to 17.x could be a breaking change for...

> Do you really need to use python for this? No, tldr: For performance [jq](https://stedolan.github.io/jq/), or python are used first to parse the version from `package.json` with node as a...

What needs to happen for this to thaw?