gitlab-org--gitlab-foss/app/assets/javascripts/issue_show/mixins/animate.js
Phil Hughes 5a95d6f8da Refactored issue tealtime elements
This is to match our docs better and will also help a future issue.

Also made it possible for the description & title to be readable when JS is disabled
2017-05-10 17:20:40 +01:00

13 lines
245 B
JavaScript

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