ezeek / smartly

smartly - hubitat dashboard skin engine
https://hubitat.ezeek.us/smartly/
13 stars 1 forks source link

bootstrap iconpicker search should be case insensitive #13

Closed ezeek closed 4 years ago

ezeek commented 4 years ago

bootstrap-iconpicker/js/bootstrap-iconpicker.js

@@ -114,7 +114,7 @@

else {
            var result = [];
            $.each(Iconpicker.ICONSET[op.iconset].icons, function(i, v) {
               if (v.indexOf(search) > -1) {
               if (v.toLowerCase().indexOf(search) > -1) {
                   result.push(v);
               }
            });
ezeek commented 4 years ago

fixed within tags-input branch