Mitch VanDuyn
Mitch VanDuyn
I can do a fork, but wondered if you would be interested in working together on this?
this just seems very unclear can we have an example someplace?
line 6 of installation code sample reads `require File.expand_path('../test_app/config/environment', __FILE__)` should be `require File.expand_path('../../config/environment', __FILE__)` Also for now we need to lock gem 'webdrivers', "4.6.0"
Ascii characters (such as `©`) in the range 0x10 - 0x7F, will cause a syntax error on the client when reloading: `name: "SyntaxError", message: "malformed UTF-8 character"` See https://github.com/opal/opal/issues/2189 for...
Its useful for a component to know if its parent is going to accept an event from the component. ```ruby fires :foo ... ... accepts? :foo # does my parent...
they changed something you can patch it like this: ```ruby # patch to detect new style React memoized symbols module Hyperstack module Internal module Component class ReactWrapper def self.stateless?(ncc) `typeof...
Currently its scattered between operations and models and a pretty weird way.
Its unclear what you need to do to do simple stuff like `Window.location.path = 'some new path'` (the answer is you have to first import browser/window) but for these basic...