danielfarrell / bootstrap-combobox

A combobox plugin that works with twitter bootstrap
847 stars 327 forks source link

Blur fires a Change Event when an item is selected from the Dropdown #234

Open weisborg opened 7 years ago

weisborg commented 7 years ago

Whenever an item is picked from the dropdown I get two Change Events. First blur clears the value and triggers change on source and target while also clearing them. Then The Click of the dropdown sets the values in select and and triggers another change.

weisborg commented 7 years ago

I added this to the top of the blur method and it seems to work-

if (e.relatedTarget && $(e.relatedTarget).closest(this.$container).length == 1) return;