Scholar -> Zotero (thanks Dan S.)

This commit is contained in:
Simon Kornblith 2006-10-04 00:10:35 +00:00
parent c08a82e831
commit ac50ab16a2
2 changed files with 2 additions and 2 deletions

View file

@ -1243,7 +1243,7 @@ Zotero.CSL.prototype._getFieldValue = function(name, element, item, formattedStr
status = true;
}
} else if(condition.field) {
var formattedString = new Scholar.CSL.FormattedString(this, "Text");
var formattedString = new Zotero.CSL.FormattedString(this, "Text");
status = this._getFieldValue(condition.field, this._getFieldDefaults(condition.field), item,
formattedString, bibCitElement);
}

View file

@ -7108,7 +7108,7 @@ record.prototype.translate = function(item) {
// some LOC entries have no listed author, but have the author in the person subject field as the first entry
var field = this.getFieldSubfields("600");
if(field[0]) {
item.creators.push(Scholar.Utilities.cleanAuthor(field[0]["a"], true));
item.creators.push(Zotero.Utilities.cleanAuthor(field[0]["a"], true));
}
}