Fix error switching to COinS in export dialog
Or other export translators without options
This commit is contained in:
parent
bc31a29e5a
commit
a61c99843b
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ var Zotero_File_Interface_Export = new function() {
|
|||
}
|
||||
|
||||
var optionName = node.id.substr(OPTION_PREFIX.length);
|
||||
if(translatorOptions[optionName] != undefined) {
|
||||
if (translatorOptions && translatorOptions[optionName] != undefined) {
|
||||
// option should be enabled
|
||||
optionsBox.hidden = undefined;
|
||||
node.hidden = undefined;
|
||||
|
|
Loading…
Add table
Reference in a new issue