Welcome to mirror list, hosted at ThFree Co, Russian Federation.

animate.js « mixins « show « issues « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
      });
    },
  },
};