Results 69 comments of Jacob Weber

If anyone needs help reproducing this, I'm happy to do so. Would love to get it fixed. @noahch When are you calling realignInkBar? It only seems to work for me...

@tiny-james If I do that, I just get an error from eslint, "Environment key "NODE_ENV" is unknown". I think it may just be stopping eslint from working. The underlying issue...

OK, here's a hack that seems to work: Update package.json to look like this: ``` "eslintConfig": { "extends": [ "react-app", "react-app/jest" ], "parserOptions": { "babelOptions": { "presets": [ ["babel-preset-react-app", false]...

@dingziqi Hmm, not sure why it's working differently for you. I don't know if this would work, but you could try: ``` "presets": [ ["babel-preset-react-app", false], 'babel-preset-react-app/prod' ] ```

Actually I realized that my issue wasn't caused by a focus problem, so I don't need this anymore.

Actually this starts happening with Juce [6.0.8](https://github.com/juce-framework/JUCE/compare/6.0.7...6.0.8) (6.0.7 works).

I managed to work around this by removing Ninja. I removed `-G Ninja -D CMAKE_MAKE_PROGRAM=ninja` from the cmake configure step, and I also had to add ` --config "$ENV{BUILD_TYPE}"` to...

Might be able to work around this by adding to webpack.config.js under exports.plugins: ``` new webpack.ProvidePlugin({ L: 'leaflet', 'window.L': 'leaflet', }), ```

Any way to get this merged? Thanks.

I got this to work by modifying JSO, so that if you use jso_registerRedirectHandler, it skips the code that restores the hash. So I added a custom_redirect variable to the...