Fix for strings in IE

This commit is contained in:
Simon Kornblith 2012-07-18 14:56:37 -04:00
parent ad4eccc54d
commit 54fd18cce3

View file

@ -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);
} }
} }