turbo-react
turbo-react copied to clipboard
A JavaScript library that transitions between static HTML pages on navigation; no app server required.
Hi I'm currently using Turbolinks with webpack as described here - https://github.com/turbolinks/turbolinks#installation-using-npm ```javascript // main.js import Turbolinks from 'turbolinks' Turbolinks.start() ``` How can I fit in `turbo-react` in the file?
I'm trying to animate body colours between pages but my body CSS classes are not being updated. e.g. this code won't work ``` Content ``` It only seems to work...
TurboReact monkeypatches `document.documentElement.replaceChild` because Turbolinks (at least prior to v3) provides no way to intervene in the replacement process. Monkeypatching the DOM is a Bad Thing:registered: and needs to be...
I have a form, and depending on which link I click, form fields are pre-filled with different values. When using turbo-react, the form fields (input[type=text]) don't get updated. Is this...
Should turbo react render with no problems also react components? Currently after page switch I can't get components to load. Is there a solution for that?
My portfolio site uses quite a few SVGs inline, this breaks with the error... ``` Uncaught Error: Namespace attributes are not supported. ReactJSX is not XML. ``` I can get...
The demo page does not work in Chrome on iOS (although works fine in Safari on iOS). No other debug info available yet.