David Chang
David Chang
Actually most of the syntax change or feature proposed are just nice to have it merged (especially those we've already discussed) But what I would expected is that each of...
I haven't try the react-rails integration yet, but currently we got builtin support for JSX already. Would you mind providing detailed error log and set up of your project?
Cool, really looking forward to it! For the blur effect, I think [this](https://github.com/JagCesar/iOS-blur) may help :smiley_cat:
Hi, it looks great! But it it necessary the height of notification view to be 60 point? Since in the system notification view, the extra space is used to contain...
Actually you can put whatever js file downloaded in the manifest file https://github.com/zetachang/opal-native/blob/master/app/bundle.js, and sprockets will package them. But since sprockets don't know about module system of JS, [webpack](http://webpack.github.io) or...
I am working https://github.com/zetachang/opalrb-loader, which let you integrate opal to webpack rather than current Sprockets setup. The good part is that webpack know how to resolve `require` statement in the...
Looks like a cool idea (also learn some cool tricks from your code :smile: ), would you mind explaining more on the haml2react.rb part?
Just come up with idea to support different template language (erb, haml) by extending the DOM2React idea @elia present. Basically every time the render method of the react component is...
Actually the render method will work like pseudo code below, ``` ruby def render offscreen_element = Element.create(Template['hello_message'].render(self)) DOM2React.build(offscreen_element) end ``` So it's still possible to pass data to the template...