Fix for strings in IE
This commit is contained in:
parent
ad4eccc54d
commit
54fd18cce3
1 changed files with 1 additions and 1 deletions
|
@ -693,7 +693,7 @@ Zotero.Utilities = {
|
||||||
} else {
|
} else {
|
||||||
// this is not a skip word or comes after a colon;
|
// this is not a skip word or comes after a colon;
|
||||||
// we must capitalize
|
// we must capitalize
|
||||||
words[i] = upperCaseVariant[0] + lowerCaseVariant.substr(1);
|
words[i] = upperCaseVariant.substr(0, 1) + lowerCaseVariant.substr(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue