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

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