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

Fixes #7824 #7832

Merged
merged 1 commit into from
Oct 1, 2016
Merged

Fixes #7824 #7832

merged 1 commit into from
Oct 1, 2016

Conversation

mnpenner
Copy link
Contributor

Re-submitting this PR since I messed it up. Sorry for the mess.

@facebook-github-bot
Copy link

Thank you for your pull request. As you may know, we require contributors to sign our Contributor License Agreement, and we don't seem to have you on file and listed as active anymore. In order for us to review and merge your code, please email [email protected] with your details so we can update your status.

@facebook-github-bot
Copy link

Thank you for signing our Contributor License Agreement. We can now accept your code for this (and any) Facebook open source project. Thanks!

@syranide
Copy link
Contributor

👍 cc @jimfb (again :))

@jimfb
Copy link
Contributor

jimfb commented Sep 29, 2016

For posterity, the repro is:

const React = require('react');
const ReactDOM = require('react-dom');

var Hello = React.createClass({

    getInitialState: function() {
        return {foo: "foo"};
    },

    clickA: function(ev) {
        this.setState({foo: "bar"});
    },


    render: function() {
        return <div>
            <button onClick={this.clickA}>{this.state.foo} <img src="https://s3.amazonaws.com/media-p.slid.es/uploads/alexanderfarennikov/images/1198519/reactjs.png" width="15" height="15" /></button>
        </div>;
    }
});

ReactDOM.render(
    <Hello name="World" />,
    document.getElementById('container')
);

@marvinhagemeister
Copy link
Contributor

@mnpenner Thanks for your hard work in tracking this one down!

@jimfb jimfb merged commit dae3043 into facebook:master Oct 1, 2016
@zpao zpao added this to the 15-next milestone Oct 3, 2016
@zpao zpao modified the milestones: 15-next, 15.4.0 Oct 4, 2016
zpao pushed a commit that referenced this pull request Oct 4, 2016
(cherry picked from commit dae3043)
acusti pushed a commit to brandcast/react that referenced this pull request Mar 15, 2017
@blling
Copy link

blling commented Feb 1, 2018

@mnpenner do you use React15 in production, does 15.4.0 support IE8 in your experience?

@blling blling unassigned jimfb Feb 1, 2018
@mnpenner
Copy link
Contributor Author

mnpenner commented Feb 1, 2018

@blling We're using React 15.6 in production, yes. Soon to upgrade to React 16.2 since we finally dropped IE8.

But in my experience, yes, even 15.6 worked fine with IE8.

We have a ton of polyfills though, so, that may have helped.

@blling
Copy link

blling commented Feb 3, 2018

@mnpenner Thanks.
Could you list the polyfills and package.json configs ( and webpack config if you use webpack ) ? :)

@mnpenner
Copy link
Contributor Author

mnpenner commented Feb 5, 2018

@blling Okay...but this is quite specific to our project, and overkill for just about anything else: https://gist.github.com/mnpenner/d09beb0c243311d2f5f512d0899114c0

@blling
Copy link

blling commented Feb 5, 2018

@mnpenner Could you send an email to me with the configs?
I could not open the link for some reason...

[email protected]

@blling
Copy link

blling commented Feb 28, 2018

cc @mnpenner , are you there? I use webpack1.15.0 and upgrade React to 15.0.0, I get the follow error:

if (IE8_DOM_DEFINE) try {
    return dP(O, P, Attributes);
  } catch (e) { /* empty */ }
// ********************************Throws error here
if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!') 

If i use React 0.14.9 the error is go away, do you know how could i solve the issue?

@mnpenner
Copy link
Contributor Author

Sorry @blling, I don't know the answer. Try some more polyfills, like core-js/es6, core-js/es5 and core-js/stage/4.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants