Skip to content

Commit 814e94c

Browse files
authored
fix(dropdown): Emit shown and hidden events (issue #757)
1 parent 25280ae commit 814e94c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/mixins/dropdown.js

+2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ export default {
6868

6969
if (state) {
7070
this.emitOnRoot('shown::dropdown', this);
71+
this.$emit('shown');
7172
/*
7273
If this is a touch-enabled device we add extra
7374
empty mouseover listeners to the body's immediate children;
@@ -82,6 +83,7 @@ export default {
8283
}
8384
} else {
8485
this.emitOnRoot('hidden::dropdown', this);
86+
this.$emit('hidden');
8587
/*
8688
If this is a touch-enabled device we remove the extra
8789
empty mouseover listeners we added for iOS support

0 commit comments

Comments
 (0)