Skip to content

Commit

Permalink
changed 'Notation' to 'Identifier'
Browse files Browse the repository at this point in the history
  • Loading branch information
azankl committed Nov 15, 2020
1 parent 9c61937 commit 06a6100
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The search results can be copied to the clipboard or saved to a list that can be

### Acknowledgements

OntoClick was born at [Health Hack Sydney](https://speakerdeck.com/azankl/ontoclick-pitch-healthhack-2017) in November 2017. Many thanks to Team Ontoclick, in particular Graham Towse from [LivingryLabs](https://www.livingrylabs.net/) for developing the first prototype. The current version was built by Anthony Xu, Yifei (Frank) Luo, Aravind Venkateswaran, and Lianguizi (Alisa) Zhou, bioinformatics students at the University of New South Wales, as part of their BINF6111 engineering project.
OntoClick was born at [Health Hack Sydney](https://speakerdeck.com/azankl/ontoclick-pitch-healthhack-2017) in November 2017. Many thanks to Team Ontoclick, in particular Graham Towse from [LivingryLabs](https://www.livingrylabs.net/) for developing the first prototype. That prototype was further improved with the help of Anthony Xu, Yifei (Frank) Luo, Aravind Venkateswaran, and Lianguizi (Alisa) Zhou, bioinformatics students at the University of New South Wales, as part of their BINF6111 engineering project.

### Install from Chrome Store

Expand Down
4 changes: 2 additions & 2 deletions src/components/SearchBox/SearchBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
</template>
<template slot="spantext" scope="props">
<span :id='"spantext"+props.index' v-if="props.row.prefLabel && props.row.notation"></span>
<a class="hover-action far fa-copy" title="Notation + Label" @click='copyContentS(props.row.notation + " " + props.row.prefLabel)' v-if="props.row.notation && props.row.prefLabel"></a>
<a class="hover-action fas fa-highlighter" title="Text span + Notation + Label" @click="doCopy(props.row.notation, props.row.prefLabel)" v-if="props.row.notation && props.row.prefLabel"></a>
<a class="hover-action far fa-copy" title="Identifier + Label" @click='copyContentS(props.row.notation + " " + props.row.prefLabel)' v-if="props.row.notation && props.row.prefLabel"></a>
<a class="hover-action fas fa-highlighter" title="Text span + Identifier + Label" @click="doCopy(props.row.notation, props.row.prefLabel)" v-if="props.row.notation && props.row.prefLabel"></a>
<a class="hover-action far fa-save save-button" title="Save to history" @click="storeData(props.row.notation, props.row.prefLabel)" v-if="props.row.notation && props.row.prefLabel && link"></a>
</template>
</v-server-table>
Expand Down
2 changes: 1 addition & 1 deletion src/components/SearchBox/table/TableOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default {
page: 'page'
},
headings: {
notation: 'Notation',
notation: 'Identifier',
prefLabel: 'Label',
spantext: 'Actions'
},
Expand Down

0 comments on commit 06a6100

Please sign in to comment.