Skip to content

Commit

Permalink
bugfix: delete bind() at ajax functions
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Oct 24, 2014
1 parent 00842c0 commit 46c8138
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/react-video.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ module.exports = React.createClass({
thumb: thumb,
imageLoaded: true
});
}.bind(this));
});
},
fetchVimeoData() {
var id = this.props.id;
Expand All @@ -126,6 +126,6 @@ module.exports = React.createClass({
thumb: res[0].thumbnail_large,
imageLoaded: true
});
}.bind(this));
});
}
});

0 comments on commit 46c8138

Please sign in to comment.