Browse Source

Remove visible option

master
Roderic Day 5 years ago
parent
commit
9695d80523
2 changed files with 1 additions and 4 deletions
  1. +0
    -3
      pico.css
  2. +1
    -1
      pico.js

+ 0
- 3
pico.css View File

.video-option { .video-option {
display: block; display: block;
} }
.video-container:not(.visible) {
display: none;
}
.video-container.square { .video-container.square {
height: 100%; height: 100%;
width: var(--height); width: var(--height);

+ 1
- 1
pico.js View File

} }
} }
const VideoOptions = { const VideoOptions = {
available: ['visible', 'mirror', 'square'],
available: ['mirror', 'square'],
getFor: (username) => { getFor: (username) => {
if(!State.options[username]) { if(!State.options[username]) {
State.options[username] = new Set(VideoOptions.available) State.options[username] = new Set(VideoOptions.available)

Loading…
Cancel
Save