COinS atitle should be title for proceeding, and btitle should be publicationTitle.
This commit is contained in:
parent
c8a87f123a
commit
8a7245fd74
1 changed files with 5 additions and 5 deletions
|
@ -296,20 +296,20 @@ Zotero.OpenURL = new function() {
|
||||||
item.accessDate = "";
|
item.accessDate = "";
|
||||||
}
|
}
|
||||||
} else if(key == "rft.btitle") {
|
} else if(key == "rft.btitle") {
|
||||||
if(item.itemType == "book" || item.itemType == "conferencePaper" || item.itemType == "report") {
|
if(item.itemType == "book" || item.itemType == "report") {
|
||||||
item.title = value;
|
item.title = value;
|
||||||
} else if(item.itemType == "bookSection") {
|
} else if(item.itemType == "bookSection" || item.itemType == "conferencePaper") {
|
||||||
item.publicationTitle = value;
|
item.publicationTitle = value;
|
||||||
}
|
}
|
||||||
} else if(key == "rft.atitle" && (item.itemType == "journalArticle" ||
|
} else if(key == "rft.atitle"
|
||||||
item.itemType == "bookSection")) {
|
&& ["journalArticle", "bookSection", "conferencePaper"].indexOf(item.itemType)) {
|
||||||
item.title = value;
|
item.title = value;
|
||||||
} else if(key == "rft.jtitle" && item.itemType == "journalArticle") {
|
} else if(key == "rft.jtitle" && item.itemType == "journalArticle") {
|
||||||
item.publicationTitle = value;
|
item.publicationTitle = value;
|
||||||
} else if(key == "rft.stitle" && item.itemType == "journalArticle") {
|
} else if(key == "rft.stitle" && item.itemType == "journalArticle") {
|
||||||
item.journalAbbreviation = value;
|
item.journalAbbreviation = value;
|
||||||
} else if(key == "rft.title") {
|
} else if(key == "rft.title") {
|
||||||
if(item.itemType == "journalArticle" || item.itemType == "bookSection") {
|
if(["journalArticle", "bookSection", "conferencePaper"].indexOf(item.itemType)) {
|
||||||
item.publicationTitle = value;
|
item.publicationTitle = value;
|
||||||
} else {
|
} else {
|
||||||
item.title = value;
|
item.title = value;
|
||||||
|
|
Loading…
Add table
Reference in a new issue