Skip to content

Commit

Permalink
Fix vars
Browse files Browse the repository at this point in the history
  • Loading branch information
artf committed Apr 7, 2016
1 parent 51a6681 commit e11fe8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ rec.startRecording();

let movieJSON = fetchMovie();
let movie = new cimice.Movie(movieJSON);
var player = new cimice.Player({
let player = new cimice.Player({
target: document.getElementById('some-div')
});
player.setMovie(movie);
Expand All @@ -114,7 +114,7 @@ rec.startRecording();
// PLAYER
// ... fetch your movie and frames data
let movie = new cimice.Movie(movieJSON);
var player = new cimice.Player({
let player = new cimice.Player({
target: document.getElementById('some-div')
});
player.setMovie(movie);
Expand Down

0 comments on commit e11fe8d

Please sign in to comment.