Closes #52: Allow to use empty string as delimiter in xpathText
This commit is contained in:
parent
cb656c9456
commit
81c33f49dd
|
@ -972,7 +972,7 @@ Zotero.Utilities = {
|
||||||
strings[i] = elements[i].textContent;
|
strings[i] = elements[i].textContent;
|
||||||
}
|
}
|
||||||
|
|
||||||
return strings.join(delimiter ? delimiter : ", ");
|
return strings.join(delimiter !== undefined ? delimiter : ", ");
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user