Fix error switching to COinS in export dialog

Or other export translators without options
This commit is contained in:
Dan Stillman 2016-03-25 02:33:26 -04:00
parent bc31a29e5a
commit a61c99843b

View file

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