Tutorial - shorten URL

This commit is contained in:
Andrew Rasmussen 2015-03-25 21:49:44 -07:00
parent b344c938df
commit 0b3cce1fd2
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ Before we write the code to fetch actual Rotten Tomatoes data, let's mock some d
```javascript
var MOCKED_MOVIES_DATA = [
{title: 'Title', year: '2015', posters: {thumbnail: 'http://resizing.flixster.com/yDGJbDZ4tOk8Wsfl2Ljt1JYgHpk=/53x81/dkpu1ddg7pbsk.cloudfront.net/movie/11/18/90/11189059_ori.jpg'}},
{title: 'Title', year: '2015', posters: {thumbnail: 'http://i.imgur.com/UePbdph.jpg'}},
];
```