gitlab-org--gitlab-foss/app/assets/javascripts/issue_show/mixins/animate.js

14 lines
241 B
JavaScript

export default {
methods: {
animateChange() {
this.preAnimation = true;
this.pulseAnimation = false;
setTimeout(() => {
this.preAnimation = false;
this.pulseAnimation = true;
});
},
},
};