Skip to content

Commit

Permalink
feat(vue-slider): handle focusout event
Browse files Browse the repository at this point in the history
closes #463
  • Loading branch information
devCrossNet committed Sep 28, 2019
1 parent 01c4592 commit 4f2f817
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/shared/components/VueSlider/VueSlider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
@focus="currentSlider = 0"
@keydown="onKeyDown"
@keyup="onKeyUp"
@focusout="currentSlider = null"
></button>

<button
Expand All @@ -44,6 +45,7 @@
@focus="currentSlider = 1"
@keydown="onKeyDown"
@keyup="onKeyUp"
@focusout="currentSlider = null"
></button>
</div>
</div>
Expand Down

0 comments on commit 4f2f817

Please sign in to comment.