1
0
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:
Johan Fagerberg 2018-07-27 17:32:15 +02:00 committed by GitHub
commit e8fe89ef27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>