Skip to content

Commit

Permalink
re-emit click event in vue (text-mask#700)
Browse files Browse the repository at this point in the history
  • Loading branch information
humkins authored and lozjackson committed Dec 28, 2017
1 parent 02dd478 commit feca1fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vue/src/vueTextMask.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export default {
input: (event) => this.updateValue(event.target.value),
focus: (event) => this.emitEvent(event),
blur: (event) => this.emitEvent(event),
keypress: (event) => this.emitEvent(event)
keypress: (event) => this.emitEvent(event),
click: (event) => this.emitEvent(event)
}
})
},
Expand Down

0 comments on commit feca1fb

Please sign in to comment.