Skip to content

Commit

Permalink
initial video hide buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
nkonev committed Dec 27, 2024
1 parent 2980ed8 commit 53b5623
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions frontend/src/VideoButtons.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
</template>
<v-btn variant="plain" tile icon @click.stop.prevent="onEnterFullscreen" :title="$vuetify.locale.t('$vuetify.fullscreen')"><v-icon size="x-large">mdi-arrow-expand-all</v-icon></v-btn>

<v-btn variant="plain" tile icon @click.stop.prevent="toggleMessages()"><v-icon size="x-large">mdi-message-text-outline</v-icon></v-btn>

<v-btn :disabled="videoIsGallery()" variant="plain" tile icon @click.stop.prevent="toggleMiniatures()"><v-icon size="x-large">mdi-table-row</v-icon></v-btn>

<v-btn :disabled="videoIsGallery()" tile icon :input-value="presenterValue()" @click="presenterClick" :variant="presenterValue() ? 'tonal' : 'plain'" :title="presenterValue() ? $vuetify.locale.t('$vuetify.video_presenter_disable') : $vuetify.locale.t('$vuetify.video_presenter_enable')"><v-icon size="x-large">mdi-presentation</v-icon></v-btn>

<v-select
Expand Down Expand Up @@ -133,6 +137,10 @@ export default {
openSettings() {
bus.emit(OPEN_SETTINGS, 'a_video_settings') // value matches with SettingsModal.vue :: v-window-item
},
toggleMiniatures(v) {
},
toggleMessages(v) {
},
}
}
</script>
Expand Down

0 comments on commit 53b5623

Please sign in to comment.