mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-29 21:37:34 -07:00
fix: 🐛 fix again
This commit is contained in:
parent
46b87ef757
commit
e946c8b477
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "misskey",
|
"name": "misskey",
|
||||||
"version": "12.118.1-calc.9.3",
|
"version": "12.118.1-calc.9.4",
|
||||||
"codename": "aqua",
|
"codename": "aqua",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
<button class="button widget _button" @click="widgetsShowing = true"><i class="fas fa-layer-group"></i></button>
|
<button class="button widget _button" @click="widgetsShowing = true"><i class="fas fa-layer-group"></i></button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button v-if="isMobile" class="postButton button post _button" @click="os.post()"><i class="fas fa-pencil-alt"></i></button>
|
<button v-if="isMobile" id="postButton" class="postButton button post _button" @click="os.post()"><i class="fas fa-pencil-alt"></i></button>
|
||||||
|
|
||||||
<transition :name="$store.state.animation ? 'menuDrawer-back' : ''">
|
<transition :name="$store.state.animation ? 'menuDrawer-back' : ''">
|
||||||
<div
|
<div
|
||||||
|
@ -172,7 +172,7 @@ function top() {
|
||||||
}
|
}
|
||||||
|
|
||||||
let scrollPos = 0;
|
let scrollPos = 0;
|
||||||
const postButton = document.querySelector<HTMLElement>('.postButton');
|
const postButton = document.getElementById('postButton');
|
||||||
|
|
||||||
function checkPosition() {
|
function checkPosition() {
|
||||||
let windowY = window.scrollY;
|
let windowY = window.scrollY;
|
||||||
|
|
Loading…
Reference in a new issue