Addresses #596, Auto-append appropriate file extension when none specified in Save dialog

I think this is the real fix
This commit is contained in:
Dan Stillman 2007-03-28 19:32:56 +00:00
parent 5ec04a1dfe
commit d55f945acd

View File

@ -63,6 +63,7 @@ Zotero_File_Exporter.prototype.save = function() {
} else {
// if the result will be a file, append an extension and use filters
fp.defaultString = this.name+"."+io.selectedTranslator.target;
fp.defaultExtension = io.selectedTranslator.target;
fp.appendFilter(io.selectedTranslator.label, "*."+io.selectedTranslator.target);
}