chenhaodong
/
mew-iview
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
16fc63614f25008e1b60a6442c04b252491be41f
Authored by
Sergio Crisostomo
2018-05-08 11:34:15 +0200
1 parent
cca3bcaa
stop propagation on ESC key
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
src/components/select/select.vue
Inline
Side-by-side
src/components/select/select.vue
Wrap text
Show/Hide comments
View file @
16fc636
...
...
@@ -482,6 +482,7 @@
482
482
483
483
// Esc slide-up
484
484
if (e.key === 'Escape') {
485
+ e.stopPropagation();
485
486
this.hideMenu();
486
487
}
487
488
// next
...
...