debian-mirror-gitlab/app/assets/javascripts/issues/show/mixins/animate.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
241 B
JavaScript
Raw Normal View History

2017-09-10 17:25:29 +05:30
export default {
methods: {
animateChange() {
this.preAnimation = true;
this.pulseAnimation = false;
setTimeout(() => {
this.preAnimation = false;
this.pulseAnimation = true;
});
},
},
};