mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 20:23:49 +01:00
[Client] Fix bug
This commit is contained in:
parent
7a94622a33
commit
9deab46b54
@ -99,7 +99,7 @@
|
||||
scale: 0.5,
|
||||
duration: 200,
|
||||
easing: 'easeInBack',
|
||||
complete: this.unmount
|
||||
complete: () => this.unmount()
|
||||
});
|
||||
};
|
||||
</script>
|
||||
|
@ -127,7 +127,7 @@
|
||||
scale: 0.8,
|
||||
duration: 300,
|
||||
easing: [ 0.5, -0.5, 1, 0.5 ],
|
||||
complete: this.unmount
|
||||
complete: () => this.unmount()
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -54,7 +54,7 @@
|
||||
opacity: 0,
|
||||
duration: 100,
|
||||
easing: 'linear',
|
||||
complete: this.unmount
|
||||
complete: () => this.unmount()
|
||||
});
|
||||
};
|
||||
</script>
|
||||
|
@ -38,7 +38,7 @@
|
||||
top: '-64px',
|
||||
duration: 500,
|
||||
easing: 'easeOutQuad',
|
||||
complete: this.unmount
|
||||
complete: () => this.unmount()
|
||||
});
|
||||
}, 6000);
|
||||
});
|
||||
|
@ -142,7 +142,7 @@
|
||||
'margin-top': '-8px',
|
||||
duration: 200,
|
||||
easing: 'easeOutQuad',
|
||||
complete: this.unmount
|
||||
complete: () => this.unmount()
|
||||
});
|
||||
};
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user