We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cbc808 commit 470ad40Copy full SHA for 470ad40
src/mixins/dropdown.js
@@ -151,14 +151,14 @@ export default {
151
hideMenu() {
152
// TODO: move emit hide to visible watcher, to allow cancelling of hide
153
this.$emit("hide");
154
- if (this._popper) {
+ if (this._popper) {
155
// Ensure popper event listeners are removed cleanly
156
this._popper.destroy();
157
}
158
this._popper = null;
159
this.setTouchStart(false);
160
this.emitOnRoot("bv::dropdown::hidden", this);
161
- this.$emit("hidden");
+ this.$emit("hidden");
162
},
163
getPopperConfig() {
164
let placement = AttachmentMap.BOTTOM;
0 commit comments