Skip to content

Commit

Permalink
hide controls on mobile when locked. #381
Browse files Browse the repository at this point in the history
  • Loading branch information
m1k1o committed Apr 4, 2024
1 parent f32fc98 commit 5f69833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/video.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<ul v-if="!fullscreen && !hideControls" class="video-menu top">
<li><i @click.stop.prevent="requestFullscreen" class="fas fa-expand"></i></li>
<li v-if="admin"><i @click.stop.prevent="openResolution" class="fas fa-desktop"></i></li>
<li v-if="!implicitHosting" :class="extraControls || 'extra-control'">
<li v-if="!controlLocked && !implicitHosting" :class="extraControls || 'extra-control'">
<i
:class="[hosted && !hosting ? 'disabled' : '', !hosted && !hosting ? 'faded' : '', 'fas', 'fa-keyboard']"
@click.stop.prevent="toggleControl"
Expand Down

0 comments on commit 5f69833

Please sign in to comment.