diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-08-28 18:02:05 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-08-28 18:02:05 +0200 |
| commit | 6dea2acdf558f39c868be92c5657190d9fb6bd46 (patch) | |
| tree | f37b751b3c5dfb1d4c8d2a2501b9c849ec6ff174 /animism-align/frontend/app/views/align/components | |
| parent | 1b48663dd1a2dffc0f06e6a072a3a9f0925081a0 (diff) | |
transcript UX
Diffstat (limited to 'animism-align/frontend/app/views/align/components')
2 files changed, 14 insertions, 0 deletions
diff --git a/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.gallery.js b/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.gallery.js index e85c6f3..5fb8958 100644 --- a/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.gallery.js +++ b/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.gallery.js @@ -48,6 +48,13 @@ export const AnnotationFormGallery = ({ annotation, media, handleSettingsSelect, onChange={handleSettingsSelect} /> + <Checkbox + label="Hide in transcript" + name="hide_in_transcript" + checked={annotation.settings.hide_in_transcript} + onChange={handleSettingsSelect} + /> + <Select title='Color' name='color' diff --git a/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.image.js b/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.image.js index 285dbcc..a4d952d 100644 --- a/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.image.js +++ b/animism-align/frontend/app/views/align/components/annotations/annotationForms/annotationForm.image.js @@ -48,6 +48,13 @@ export const AnnotationFormImage = ({ annotation, media, handleSettingsSelect, h onChange={handleSettingsSelect} /> + <Checkbox + label="Hide in transcript" + name="hide_in_transcript" + checked={annotation.settings.hide_in_transcript} + onChange={handleSettingsSelect} + /> + {(annotation.settings.fullscreen && !annotation.settings.inline) && ( <AnnotationFormFullscreen annotation={annotation} |
