victor-valencia / bootstrap-iconpicker

A simple icon picker
https://victor-valencia.github.com/bootstrap-iconpicker/
MIT License
381 stars 138 forks source link

Search is case sensitive, but icons are all lower case #87

Open ian-weatherhogg-refractiv opened 5 years ago

ian-weatherhogg-refractiv commented 5 years ago

on mobile the search field enter gets automatically capitalized, so effectively search doesn't work. and if a user searches for "Amazon" they'll get no results.

suggested fix: after line 116: search = search.trim().toLowerCase()

and change line 324 to: <input type="text"autocapitalize="off"