-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix: Safari 11.0.3 Bug (Always 'bold' Text (for noneSelectedText)) #1913
Comments
What version of bootstrap-select are you using? Is this bug occurring in v1.13.0-beta? https://github.com/snapappointments/bootstrap-select/releases/tag/v1.13.0-beta |
caseyjhol
added a commit
to snapappointments/bootstrap-select-temp
that referenced
this issue
Feb 21, 2018
I'm using v1.12.4. |
Released in v1.13.0! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fix on line 526 in bootstrap-select.js:
Old:
'<span class="filter-option pull-left"></span> ' +
New:
'<span class="filter-option pull-left"></span>' +
Due to this, the 'noneSelectedText' was bold in Safari.
After the fix the text looked normal like expected.
Cant reproduce the bug in Firefox, seems to be a Safari issue. (macOS)
But anyway, the
in this line is really unnecessary and should be removed.The text was updated successfully, but these errors were encountered: