Skip to content

Commit

Permalink
Merge pull request #429 from chain4travel/aeddaqqa/update-terms-of-use
Browse files Browse the repository at this point in the history
feat(wallet): update Terms & Conditions for Camino Wallet
  • Loading branch information
aeddaqqa authored Aug 19, 2024
2 parents b93a78e + 53b81dc commit 19afdce
Show file tree
Hide file tree
Showing 4 changed files with 677 additions and 1,016 deletions.
12 changes: 5 additions & 7 deletions src/components/misc/ToS.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,19 @@
<div class="term-of-us">
<p>
By using this application you agree to the
<a class="link" @click="redirect()" href="#" target="_blank" rel="noopener noreferrer">
Terms of Use.
</a>
<span class="link" @click="click('/legal')">Terms of Use.</span>
</p>
</div>
</template>
<script lang="ts">
import { Vue, Component } from 'vue-property-decorator'
import { Vue, Component, Prop } from 'vue-property-decorator'
@Component({
name: 'tos',
})
export default class ToS extends Vue {
url: string = 'https://camino.network/terms/'
redirect() {
window.open(this.url, '_blank')
helpers = this.globalHelper()
click(to: string) {
this.helpers.navigate(to)
}
}
</script>
Expand Down
Loading

0 comments on commit 19afdce

Please sign in to comment.