Skip to content
Snippets Groups Projects
Commit ce4ea507 authored by syuilo's avatar syuilo
Browse files

enhance(client): アニメーションを減らす設定をメニューのアニメーションにも適用するように

Resolve #7826
parent 8a558eed
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,13 @@ ...@@ -7,6 +7,13 @@
--> -->
## 12.x.x (unreleased)
### Improvements
- アニメーションを減らす設定をメニューのアニメーションにも適用するように
### Bugfixes
## 12.91.0 (2021/09/22) ## 12.91.0 (2021/09/22)
### Improvements ### Improvements
......
import { Directive } from 'vue'; import { Directive } from 'vue';
import { defaultStore } from '@client/store';
export default { export default {
mounted(el, binding, vn) { mounted(el, binding, vn) {
if (!defaultStore.state.animation) return;
el.classList.add('_anime_bounce_standBy'); el.classList.add('_anime_bounce_standBy');
el.addEventListener('mousedown', () => { el.addEventListener('mousedown', () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment