Skip to content

Commit

Permalink
remove default video size to test scaling
Browse files Browse the repository at this point in the history
  • Loading branch information
Gene Hallman committed Nov 27, 2014
1 parent aacb030 commit 2a685bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions example/loopback.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<div class="container">
<div style="float:left;">
<h3>Local stream</h3>
<video id="videoInput" autoplay width="480px" height="360px"></video>
<video id="videoInput" autoplay></video>
</div>
<div style="float:right;">
<h3>Remote stream</h3>
<video id="videoOutput" autoplay width="480px" height="360px" muted="muted"></video>
<video id="videoOutput" autoplay muted="muted"></video>
</div>
</div>
</div>
Expand Down
2 changes: 0 additions & 2 deletions example/room.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@
function newVideo() {
var videoEl = document.createElement("video");
videoEl.autoplay = true;
videoEl.width = 480;
videoEl.height = 360;
videoEl.muted = true;
videoHolder.appendChild(videoEl);
return videoEl;
Expand Down

0 comments on commit 2a685bc

Please sign in to comment.