summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issue_show/mixins/animate.js
blob: 4816393da1f1b3662f7c1d8c6588cdcda5438582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export default {
  methods: {
    animateChange() {
      this.preAnimation = true;
      this.pulseAnimation = false;

      setTimeout(() => {
        this.preAnimation = false;
        this.pulseAnimation = true;
      });
    },
  },
};