Josh LeBlanc

Results 15 comments of Josh LeBlanc

For what it's worth, there is a gem that does this over yonder: https://github.com/nshki/chusaku

https://github.com/HorizonShadow/react-rails-turbolinks I put a sleep in the root action, so if you go to localhost:3000, then click "Two", then click "Root", you'll see the root page for 2 seconds before...

I’m working on a PR for this and support for data-turbolinks-permanent.

It's been forever since I looked at that, and I vaguely seem to recall part of it being rolled back due to other issues. I'm not sure if it still...

@tylerkahn Your issue is you're adding isomorphic-fetch to application.js, not server_rendering.js. server_rendering.js is the entry point for server rendering, so any polyfills you need, need to imported there. I created...

If you use a custom formatter function, the labels will still break out of the rendering area. https://codesandbox.io/s/vue-basic-example-2dw9c

Adding `v0.3` to the config fixed it for me.

Just in case someone else runs across this, you can temporarily work around this with `prose !prose-invert`

If you're stuck on react-router v5, and want to incorporate mobx v6, you can do the following: ```ts import { RouterStore, syncHistoryWithStore } from 'mobx-react-router'; import { createBrowserHistory } from...

@rustynail1984 Replace `themeChange()` with ```js addEventListener('livewired:navigated', () => { themeChange(false); }); ``` This also applies to anyone using turbo: ```js addEventListener("turbo:load", () => { themeChange(false); }) ```