summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/sections/viewer.sections.nav.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-10-02 16:33:20 +0200
committerJules Laplace <julescarbon@gmail.com>2020-10-02 16:33:20 +0200
commit008c10e0a1abde2bbc22b6b6f265ac23c14d8b19 (patch)
treef2ac213df83f7eb3f2dc9592aed8477b20abb0f7 /animism-align/frontend/app/views/viewer/sections/viewer.sections.nav.js
parent2aa9ed562116225b155f8dec5616cf06c82ac446 (diff)
footnotes
Diffstat (limited to 'animism-align/frontend/app/views/viewer/sections/viewer.sections.nav.js')
-rw-r--r--animism-align/frontend/app/views/viewer/sections/viewer.sections.nav.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/animism-align/frontend/app/views/viewer/sections/viewer.sections.nav.js b/animism-align/frontend/app/views/viewer/sections/viewer.sections.nav.js
index 4506664..1825732 100644
--- a/animism-align/frontend/app/views/viewer/sections/viewer.sections.nav.js
+++ b/animism-align/frontend/app/views/viewer/sections/viewer.sections.nav.js
@@ -6,6 +6,7 @@ import actions from 'app/actions'
import { Arrow } from '../nav/viewer.icons'
import ViewerSectionsShare from './viewer.sections.share'
import ViewerSectionsSubscribe from './viewer.sections.subscribe'
+import ViewerSectionsFootnotes from './viewer.sections.footnotes'
class ViewerSectionsNav extends Component {
render() {
@@ -35,16 +36,17 @@ class ViewerSectionsNav extends Component {
{'Checklist'}
</div>
</div>
- <div>
+ <div className='footnotes-element'>
<div className="footnotes-link link">
<span onClick={() => actions.viewer.showNavComponent('footnotes')}>
<Arrow type={viewer.footnotes ? 'down' : 'up'} />
- {'Footnotes'}
+ {'Notes'}
</span>
</div>
<div className="transcript-link link" onClick={() => actions.viewer.openTranscript()}>
{'Transcript'}
</div>
+ <ViewerSectionsFootnotes />
</div>
</div>
</div>