diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-07-17 21:03:42 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-07-17 21:03:42 +1000 |
| commit | 6ce828cb9649e8fc0a68bd7f0f99719b73229692 (patch) | |
| tree | 49024f166c64940afc78586a75daaaf5d3791da2 /src/components | |
| parent | 60e708f9897a73d0b287df9ae758035d1b623ea1 (diff) | |
Add more 'title' tooltips
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/TileInfoModal.vue | 6 | ||||
| -rw-r--r-- | src/components/TutorialPane.vue | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/components/TileInfoModal.vue b/src/components/TileInfoModal.vue index db7dd4f..421f22f 100644 --- a/src/components/TileInfoModal.vue +++ b/src/components/TileInfoModal.vue @@ -18,11 +18,11 @@ {{getDisplayName(nodeName, tolNode)}} </h1> <div class="flex justify-evenly text-sm md:text-base"> - <div> Children: {{tolNode.children.length}} </div> - <div> Tips: {{tolNode.tips}} </div> + <div> Children: {{(tolNode.children.length).toLocaleString()}} </div> + <div> Tips: {{(tolNode.tips).toLocaleString()}} </div> <div> <a :href="'https://tree.opentreeoflife.org/opentree/argus/opentree13.4@' + tolNode.otolId" - target="_blank">OTOL <external-link-icon class="inline-block w-3 h-3"/></a> + target="_blank" title="Look up in Open Tree of Life">OTOL <external-link-icon class="inline-block w-3 h-3"/></a> </div> </div> <div v-if="nodes.length > 1" class="text-center text-sm px-2"> diff --git a/src/components/TutorialPane.vue b/src/components/TutorialPane.vue index dd772b1..2803498 100644 --- a/src/components/TutorialPane.vue +++ b/src/components/TutorialPane.vue @@ -31,7 +31,7 @@ </span> </div> <div v-else-if="stage == 6" :style="contentStyles"> - {{touchDevice ? 'Tap' : 'Click'}} the icon at the top-right to search + {{touchDevice ? 'Tap' : 'Click'}} the icon at the top right of screen to search <span class="block text-sm brightness-50"> Or press Ctrl-F </span> |
