aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/components/flowtable.jsx.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/js/components/flowtable.jsx.js')
-rw-r--r--web/src/js/components/flowtable.jsx.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/src/js/components/flowtable.jsx.js b/web/src/js/components/flowtable.jsx.js
index 9eeddbaa..1a4efe89 100644
--- a/web/src/js/components/flowtable.jsx.js
+++ b/web/src/js/components/flowtable.jsx.js
@@ -63,12 +63,11 @@ var FlowTable = React.createClass({
rowHeight: ROW_HEIGHT
};
},
- onScroll2: function () {
+ onScrollFlowTable: function () {
this.adjustHead();
this.onScroll();
},
onChange: function () {
- console.log("onChange");
this.forceUpdate();
},
scrollIntoView: function (flow) {
@@ -88,12 +87,13 @@ var FlowTable = React.createClass({
/>;
},
render: function () {
+ //console.log("render flowtable", this.state.start, this.state.stop, this.props.selected);
var flows = this.props.view ? this.props.view.flows : [];
var rows = this.renderRows(flows);
return (
- <div className="flow-table" onScroll={this.onScroll2}>
+ <div className="flow-table" onScroll={this.onScrollFlowTable}>
<table>
<FlowTableHead ref="head"
columns={this.state.columns}/>