summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Davis <thomasalwyndavis@gmail.com>2015-03-15 11:20:33 +1000
committerThomas Davis <thomasalwyndavis@gmail.com>2015-03-15 11:20:33 +1000
commita89e9763476afa770d6139ee65021a9cb4b04f40 (patch)
treedb48c29694afd0394aee2df4abb072f3753647e8
parent14dcfe22b4d53384fd0f28ef7c91d278f56fef02 (diff)
downloadbackbonetutorials-a89e9763476afa770d6139ee65021a9cb4b04f40.zip
backbonetutorials-a89e9763476afa770d6139ee65021a9cb4b04f40.tar.gz
backbonetutorials-a89e9763476afa770d6139ee65021a9cb4b04f40.tar.bz2
Update README.md
-rw-r--r--videos/beginner/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/videos/beginner/README.md b/videos/beginner/README.md
index 25cad91..a84318d 100644
--- a/videos/beginner/README.md
+++ b/videos/beginner/README.md
@@ -11,7 +11,7 @@
A deployed CORS enabled version of this server is available at
-`http://backbonejs-beginner.herokuapp.com`
+`http://backbone-beginner.herokuapp.com`
The server code base can be found [here](https://github.com/thomasdavis/video-backbone-beginner-server).
@@ -39,7 +39,7 @@ Ajax prefilters are useful for hooking into all AJAX request. In this case, we w
```js
$.ajaxPrefilter( function( options, originalOptions, jqXHR ) {
- options.url = 'http://backbonejs-beginner.herokuapp.com' + options.url;
+ options.url = 'http://backbone-beginner.herokuapp.com' + options.url;
});
```