Skip to content
Snippets Groups Projects
Commit fd32362a authored by Matthew Hodgson's avatar Matthew Hodgson
Browse files

oops, initialise fixups per-object, not per-prototype

parent 296b626e
No related branches found
No related tags found
No related merge requests found
...@@ -24,8 +24,6 @@ var Tinter = require("../../../Tinter"); ...@@ -24,8 +24,6 @@ var Tinter = require("../../../Tinter");
module.exports = React.createClass({ module.exports = React.createClass({
displayName: 'TintableSvg', displayName: 'TintableSvg',
fixups: [],
propTypes: { propTypes: {
src: React.PropTypes.string.isRequired, src: React.PropTypes.string.isRequired,
width: React.PropTypes.string.isRequired, width: React.PropTypes.string.isRequired,
...@@ -34,6 +32,7 @@ module.exports = React.createClass({ ...@@ -34,6 +32,7 @@ module.exports = React.createClass({
}, },
componentWillMount: function() { componentWillMount: function() {
this.fixups = [];
this.dispatcherRef = dis.register(this.onAction); this.dispatcherRef = dis.register(this.onAction);
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment