Archived
2
0

change about page to up-to-date.

This commit is contained in:
Miroslav Šedivý
2021-07-22 20:03:44 +02:00
parent 122fd8b957
commit 5606bfa174
3 changed files with 8 additions and 3 deletions

View File

@ -147,7 +147,7 @@
if (this.about === '') {
this.loading = true
this.$http
.get<string>('https://raw.githubusercontent.com/nurdism/neko/master/docs/README.md')
.get<string>('https://raw.githubusercontent.com/m1k1o/neko/master/docs/README.md')
.then((res) => {
return this.$http.post('https://api.github.com/markdown', {
text: res.data,

View File

@ -1,7 +1,7 @@
<template>
<div class="connect">
<div class="window">
<div class="logo">
<div class="logo" title="About n.eko" @click.stop.prevent="about">
<img src="@/assets/images/logo.svg" alt="n.eko" />
<span><b>n</b>.eko</span>
</div>
@ -47,6 +47,7 @@
flex-direction: row;
justify-content: center;
align-items: center;
cursor: pointer;
img {
height: 90px;
@ -221,5 +222,9 @@
})
}
}
about() {
this.$accessor.client.toggleAbout()
}
}
</script>