Check single items in selection window

This commit is contained in:
rmzelle 2015-07-15 21:21:51 -04:00
parent 11fe33daef
commit d3ab296cf5

View file

@ -64,6 +64,11 @@ Zotero_Ingester_Interface_SelectItems.init = function() {
itemNode.setAttribute("checked", checked);
listbox.appendChild(itemNode);
}
// Check item if there is only one
if (listbox.itemCount === 1) {
listbox.getItemAtIndex(0).setAttribute("checked", true);
}
}
/**