mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-11-16 00:59:07 +02:00
Merge pull request #909 from RedSparr0w/patch-1
Page search find .NET Google+ etc
This commit is contained in:
commit
e8fe89ef27
@ -177,7 +177,12 @@
|
||||
</script>
|
||||
<script>
|
||||
function normalizeSearchTerm(value) {
|
||||
return value.toLowerCase().replace(/ /g, '');
|
||||
return value.toLowerCase()
|
||||
.replace(/\+/g, "plus")
|
||||
.replace(/^\./, "dot-")
|
||||
.replace(/\.$/, "-dot")
|
||||
.replace(/\./g, "-dot-")
|
||||
.replace(/[ !’]/g, '');
|
||||
}
|
||||
var icons = [{{ allIconNames }}].map(normalizeSearchTerm);
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user