Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add es3ify to JSX transform #1224

Closed
wants to merge 1 commit into from
Closed

Commits on Mar 6, 2014

  1. Add es3ify to JSX transform

    This would make facebook#1223 easier to deal with in older browsers.
    
    With this change,
    
        <div class="orange" />
    
    compiles into
    
        React.DOM.div( {"class":"orange"} );
    
    and `this.props.class` turns into `this.props["class"]`.
    sophiebits committed Mar 6, 2014
    Configuration menu
    Copy the full SHA
    6c2b91b View commit details
    Browse the repository at this point in the history