Skip to content

Commit

Permalink
Update recorder.js
Browse files Browse the repository at this point in the history
Syntax error for missing semi-colon ay line24
recording = false // Old
recording = false; // New
  • Loading branch information
ashiitg committed Apr 20, 2015
1 parent 1081786 commit 99481f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/recorder.js
Expand Up @@ -21,7 +21,7 @@
}

window.stopRecording = function() {
recording = false
recording = false;
window.Stream.end();
}

Expand Down

0 comments on commit 99481f4

Please sign in to comment.