Commit e2eb7eb7 authored by Matthew Taylor's avatar Matthew Taylor Committed by GitHub

Merge pull request #1524 from mewtaylor/hotfix/fix-interval

[Master] fix parentheses around interval
parents 42006a88 a90dd6e2
......@@ -43,9 +43,9 @@ var Navigation = React.createClass({
},
componentDidMount: function () {
if (this.props.session.session.user) {
var intervalId = setInterval(
this.props.dispatch(messageCountActions.getCount(this.props.session.session.user.username), 120000)
); // check for new messages every 2 mins.
var intervalId = setInterval(function () {
this.props.dispatch(messageCountActions.getCount(this.props.session.session.user.username));
}.bind(this), 120000); // check for new messages every 2 mins.
this.setState({'messageCountIntervalId': intervalId});
}
},
......@@ -56,9 +56,9 @@ var Navigation = React.createClass({
'accountNavOpen': false
});
if (this.props.session.session.user) {
var intervalId = setInterval(
this.props.dispatch(messageCountActions.getCount(this.props.session.session.user.username), 120000)
); // check for new messages every 2 mins.
var intervalId = setInterval(function () {
this.props.dispatch(messageCountActions.getCount(this.props.session.session.user.username));
}.bind(this), 120000); // check for new messages every 2 mins.
this.setState({'messageCountIntervalId': intervalId});
} else {
// clear message count check, and set to default id.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment