This commit is contained in:
Legend Tang 2015-03-06 03:57:38 +08:00
parent 36db55f662
commit 98c0047b4e
2 changed files with 9 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@ -79,10 +79,10 @@ var FlowTable = React.createClass({
this.props.view.removeListener("remove");
this.props.view.removeListener("recalculate");
}
nextProps.props.view.addListener("add", this.onChange);
nextProps.props.view.addListener("update", this.onChange);
nextProps.props.view.addListener("remove", this.onChange);
nextProps.props.view.addListener("recalculate", this.onChange);
nextProps.view.addListener("add", this.onChange);
nextProps.view.addListener("update", this.onChange);
nextProps.view.addListener("remove", this.onChange);
nextProps.view.addListener("recalculate", this.onChange);
}
},
getDefaultProps: function () {