Fix blank progress window when save via translator to root of library

This commit is contained in:
Dan Stillman 2009-05-15 07:01:42 +00:00
parent c04ddc8389
commit c867994095

View file

@ -692,7 +692,10 @@ Zotero_Browser.Tab.prototype.translate = function(libraryID, collectionID) {
Zotero_Browser.isScraping = true;
if(collectionID) {
collection = Zotero.Collections.get(collectionID);
var collection = Zotero.Collections.get(collectionID);
}
else {
var collection = false;
}
var me = this;