Skip to content

Commit

Permalink
fix(MdRipple): fixed missing ripple effect (#2059)
Browse files Browse the repository at this point in the history
  • Loading branch information
Juravenator authored and marcosmoura committed May 11, 2019
1 parent 4fa84a4 commit b799671
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/MdRipple/MdWave.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,19 @@
name: 'MdWave',
data () {
return {
animating: true
animating: false
}
},
props: {
waveClasses: null,
waveStyles: null
},
mounted: function() {
this.animating = true;
},
methods: {
end () {
this.animating = null
this.animating = false
this.$emit('md-end')
}
}
Expand Down

0 comments on commit b799671

Please sign in to comment.