From 9169e86995ef2645948626825307db7c2eb3e5ca Mon Sep 17 00:00:00 2001 From: Frankie Bagnardi Date: Thu, 29 May 2014 09:53:13 -0400 Subject: [PATCH] add 'cache: false,' to tutorial --- docs/tutorial.html | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/tutorial.html b/docs/tutorial.html index e677d20fe0e..0923e254b8c 100644 --- a/docs/tutorial.html +++ b/docs/tutorial.html @@ -722,6 +722,7 @@

Updating state $.ajax({ url: this.props.url, dataType: 'json', + cache: false, success: function(data) { this.setState({data: data}); }.bind(this),