Fix broken Note/Citation option in "Create Bibiography"
This commit is contained in:
parent
8b37031174
commit
a3f7f97e02
1 changed files with 2 additions and 2 deletions
|
@ -500,12 +500,12 @@ var Zotero_File_Interface = new function() {
|
||||||
// generate bibliography
|
// generate bibliography
|
||||||
try {
|
try {
|
||||||
if(io.method == 'copy-to-clipboard') {
|
if(io.method == 'copy-to-clipboard') {
|
||||||
copyItemsToClipboard(items, io.style, false, io.mode === "citation");
|
copyItemsToClipboard(items, io.style, false, io.mode === "citations");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
var style = Zotero.Styles.get(io.style);
|
var style = Zotero.Styles.get(io.style);
|
||||||
var bibliography = Zotero.Cite.makeFormattedBibliographyOrCitationList(style,
|
var bibliography = Zotero.Cite.makeFormattedBibliographyOrCitationList(style,
|
||||||
items, format, io.mode === "citation");
|
items, format, io.mode === "citations");
|
||||||
}
|
}
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
window.alert(Zotero.getString("fileInterface.bibliographyGenerationError"));
|
window.alert(Zotero.getString("fileInterface.bibliographyGenerationError"));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue