Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor some video demo components into classes, seperate files #1769

Merged
merged 4 commits into from
Nov 10, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Change the serverless demo's `deploy.js` script to rebuild the demo on each run. This should remove a manual step of rebuilding the demo.
- Disable NScale resolution scaling for Android device due to Android H.264 encoding.
- Minor clean up of code in `BackgroundBlurProcessorProvided` class.
- Refactored some video demo components into classes and seperate files.

## [2.21.0] - 2021-11-01

Expand Down
38 changes: 0 additions & 38 deletions demos/browser/app/meetingV2/meetingV2.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,44 +17,6 @@ <h1>Fatal error</h1>
</div>
</div>

<template id="video-tile-template">
<video class="video-tile-video"></video>
<div class="video-tile-attendee-id"></div>
<div class="video-tile-nameplate"></div>
<div class="video-tile-pause-state"></div>
<div class="button-video-tile-config" role="group">
<button type="button" class="btn btn-success dropdown-toggle button-video-tile-config-drop" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" title="Video Tile Settings"><%= require('../../node_modules/open-iconic/svg/cog.svg') %></button>
<div class="dropdown-menu dropdown-menu-right dropdown-video-tile-config" aria-labelledby="button-video-tile-config-drop" style="position: absolute; transform: translate3d(0px, 38px, 0px); top: 0px; left: 0px; will-change: transform;">
<a class="dropdown-item video-tile-pause">Pause</a>
<div class="dropdown-divider"></div>
<h6 class="dropdown-header target-resolution-header">Target Resolution</h6>
<form class="btn-group btn-group-toggle video-tile-config-toggle target-resolution-toggle" data-toggle="buttons">
<label class="btn btn-secondary">
<input type="radio" name="level" value="low" autocomplete="off">Low
</label>
<label class="btn btn-secondary">
<input type="radio" name="level" value="medium" autocomplete="off">Medium
</label>
<label class="btn btn-secondary active">
<input type="radio" name="level" value="high" autocomplete="off" checked>High
</label>
</form>
<h6 class="dropdown-header video-priority-header">Video Priority</h6>
<form class="btn-group btn-group-toggle video-tile-config-toggle video-priority-toggle" data-toggle="buttons">
<label class="btn btn-secondary">
<input type="radio" name="level" value="low" autocomplete="off">Low
</label>
<label class="btn btn-secondary active">
<input type="radio" name="level" value="medium" autocomplete="off" checked>Medium
</label>
<label class="btn btn-secondary">
<input type="radio" name="level" value="high" autocomplete="off">High
</label>
</form>
</div>
</div>
</template>

<!-- Initial meeting authentication screen with meeting and name inputs -->
<div id="flow-authenticate" class="flow text-center p-2">
<div class="text-muted" style="position:fixed;right:3px;bottom:3px" id="sdk-version"></div>
Expand Down