Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 19 - Webcam Fun/scripts-FINISHED.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function getVideo() {
// The following has been depreceated by major browsers as of Chrome and Firefox.
// video.src = window.URL.createObjectURL(localMediaStream);
// Please refer to these:
// Depreceated - https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL
// Deprecated - https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL
// Newer Syntax - https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/srcObject

video.srcObject = localMediaStream;
Expand Down