fix searching
This commit is contained in:
parent
dcdff94712
commit
913ec3d05e
@ -124,10 +124,10 @@
|
|||||||
function searchCleaner(str) {
|
function searchCleaner(str) {
|
||||||
return str
|
return str
|
||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
.replace('"', "")
|
.replaceAll('"', "")
|
||||||
.replace(":", "")
|
.replaceAll(":", "")
|
||||||
.replace("'", "")
|
.replaceAll("'", "")
|
||||||
.replace(" ", "");
|
.replaceAll(" ", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
function ISBNfromEAN(EAN) {
|
function ISBNfromEAN(EAN) {
|
||||||
|
Loading…
Reference in New Issue
Block a user