danielfarrell / bootstrap-combobox

A combobox plugin that works with twitter bootstrap
849 stars 328 forks source link

Modifications to work with Bootstrap 4.6 #275

Open plecos opened 3 years ago

plecos commented 3 years ago

In order to make this look correct in my app, I had to do the following changes:

@line 114 I added:

this.$element.addClass('form-control');
this.$element.removeClass('ml-3');

When I put these lines in, it looks very nice and the dropdown lines up with the input. I post this to see if anyone had any better way of doing this.