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

@ -1,5 +1,5 @@
<div align="center"> <div align="center">
<a href="https://n.eko.moe/#/"> <a href="https://github.com/m1k1o/neko" title="Neko's Github repository.">
<img src="https://raw.githubusercontent.com/m1k1o/neko/master/docs/_media/logo.png" width="450" height="auto"/> <img src="https://raw.githubusercontent.com/m1k1o/neko/master/docs/_media/logo.png" width="450" height="auto"/>
</a> </a>
<p align="center"> <p align="center">

View File

@ -147,7 +147,7 @@
if (this.about === '') { if (this.about === '') {
this.loading = true this.loading = true
this.$http 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) => { .then((res) => {
return this.$http.post('https://api.github.com/markdown', { return this.$http.post('https://api.github.com/markdown', {
text: res.data, text: res.data,

View File

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