oops, we actually need to cache the fixups in TintableSvg
This commit is contained in:
parent
0f52c0a514
commit
296b626ed9
2 changed files with 43 additions and 46 deletions
|
@ -24,6 +24,8 @@ var Tinter = require("../../../Tinter");
|
|||
module.exports = React.createClass({
|
||||
displayName: 'TintableSvg',
|
||||
|
||||
fixups: [],
|
||||
|
||||
propTypes: {
|
||||
src: React.PropTypes.string.isRequired,
|
||||
width: React.PropTypes.string.isRequired,
|
||||
|
@ -48,11 +50,12 @@ module.exports = React.createClass({
|
|||
|
||||
onAction: function(payload) {
|
||||
if (payload.action !== 'tint_update') return;
|
||||
Tinter.tintSvg(ReactDOM.findDOMNode(this));
|
||||
Tinter.applySvgFixups(this.fixups);
|
||||
},
|
||||
|
||||
onLoad: function(event) {
|
||||
Tinter.tintSvg(event.target);
|
||||
this.fixups = Tinter.calcSvgFixups([event.target]);
|
||||
Tinter.applySvgFixups(this.fixups);
|
||||
},
|
||||
|
||||
render: function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue