Browse Source

Merge pull request #963 from bobeagan/patch-1

Replace "comments.json" with this.props.url in the docs tutorial code snippet
main
Pete Hunt 11 years ago
parent
commit
7eae833404
  1. 4
      docs/tutorial.md

4
docs/tutorial.md

@ -386,13 +386,13 @@ var CommentBox = React.createClass({
},
componentWillMount: function() {
$.ajax({
url: 'comments.json',
url: this.props.url,
dataType: 'json',
success: function(data) {
this.setState({data: data});
}.bind(this),
error: function(xhr, status, err) {
console.error("comments.json", status, err.toString());
console.error(this.props.url, status, err.toString());
}.bind(this)
});
},

Loading…
Cancel
Save