You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 19, 2018. It is now read-only.
For example Hypermesh needs to add some capability to INPUT tags.
Currently builtin tags are treated as special cases. Instead they should just be components like everything else, so that the render, and and hooks can be redefined.
The text was updated successfully, but these errors were encountered:
This can be done without general performance impact (unlike removed solution) as follows:
# first remove current definitions from React::Component::TagsReact::Component::Tags.remove_method:DIVReact::Component::Tags.send(:remove_const,:DIV)# now you can freely redefineclassReact::Component::Tags::DIV < Hyperloop::Componentothers:optsrenderdo# default behavior is# present ..tag-name.., params.opts, &children# for example to add data-render-time to every div:present:div,params.opts,data: {render_time: Time.now}, &childrenendend
For example Hypermesh needs to add some capability to INPUT tags.
Currently builtin tags are treated as special cases. Instead they should just be components like everything else, so that the render, and and hooks can be redefined.
The text was updated successfully, but these errors were encountered: