1
0
mirror of https://github.com/simple-icons/simple-icons.git synced 2024-12-16 01:10:30 +02:00

Page search find .NET Google+ etc

closes #902
Allow search to find `.NET`, `Google+` etc.
This commit is contained in:
Danial 2018-07-27 12:08:13 +12:00 committed by GitHub
parent 1ce7d3a563
commit 3a4fcb01a5
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>