Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Ragle committed Sep 25, 2015
1 parent 9d22cbc commit cae72c4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions public/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ var Client = Client || function() {

// Globals

var favorites = {},
lastMovieList = [],
searchCache = {},
detailsCache = {};
var favorites = {}, // key is imdb id, value is title
lastMovieList = [], // lets us re-render the same movie list by saving a backup
searchCache = {}, // key is search term, value is search results
detailsCache = {}; // key is movie id, value is movie detail object

var API_URL = "http://www.omdbapi.com/?",
REFRESH_RATE_MS = 3000;
Expand Down

0 comments on commit cae72c4

Please sign in to comment.