bootstrap-fullscreen-select
bootstrap-fullscreen-select copied to clipboard
button text is updated with value instead of text
If I have a select like this: `
` the button element on the page is updated with the value, not the label. This is not normal, in standard
This can be fixed by replacing line 290 with: this.$e.val(selectedOptions).attr("selected", true);
And if the text is really long you can put this in CSS:
button.btn-mobileSelect-gen span.text { float: left; width: auto; white-space: normal; }