fix conflict from previous PR

This commit is contained in:
Matteo Pagliazzi
2018-07-31 09:47:17 +02:00
parent c8becbccb5
commit 33149e1afa

View File

@@ -997,13 +997,13 @@ export default {
focusInput () { focusInput () {
this.$refs.inputToFocus.focus(); this.$refs.inputToFocus.focus();
}, },
<<<<<<< HEAD
handleEsc (e) { handleEsc (e) {
if (e.keyCode === 27 && this.showTagsSelect) { if (e.keyCode === 27 && this.showTagsSelect) {
======= this.closeTagsPopup();
}
},
handleClick (e) { handleClick (e) {
if (this.$refs.popup && !this.$refs.popup.$el.contains(e.target)) { if (this.$refs.popup && !this.$refs.popup.$el.contains(e.target)) {
>>>>>>> thefifthisa-clickout
this.closeTagsPopup(); this.closeTagsPopup();
} }
}, },