diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-12-02 14:28:42 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-12-02 14:28:42 +0100 |
| commit | 441b9efe7a76e801d5d079a70dcb4aeb1a132bb9 (patch) | |
| tree | 9e2b4cdef524b02ee63de8974d8794eee2e362d9 /animism-align/frontend/app/views/align/components | |
| parent | a22727e703be74e91a5e4089b66cf291d875ae98 (diff) | |
fix nav bar on chrome. add full video checkbox
Diffstat (limited to 'animism-align/frontend/app/views/align/components')
| -rw-r--r-- | animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.video.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.video.js b/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.video.js index a947e2a..dd5f640 100644 --- a/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.video.js +++ b/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.video.js @@ -72,6 +72,14 @@ export const AnnotationFormVideo = ({ annotation, media, handleSettingsSelect, h onChange={handleSettingsSelect} /> )} + {(annotation.settings.fullscreen && !annotation.settings.inline) && ( + <Checkbox + label="Can play full video at end of section" + name="can_play_full_video" + checked={annotation.settings.can_play_full_video} + onChange={handleSettingsSelect} + /> + )} <Checkbox label="Hide in transcript" name="hide_in_transcript" |
