www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 2668fc84914d4ff4f79679808f08e1d880c32664
parent 8fe4b6f8f835ba8cc1cd0c69a7496b5750c1f4d3
Author: Simon Kornblith <simon@simonster.com>
Date:   Wed, 23 Mar 2011 06:10:17 +0000

use default exportCharset even if menu is not displayed


Diffstat:
Mchrome/content/zotero/exportOptions.js | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/chrome/content/zotero/exportOptions.js b/chrome/content/zotero/exportOptions.js @@ -201,6 +201,8 @@ var Zotero_File_Interface_Export = new function() { if(option == "exportCharset") { if(_charsets) { displayOptions[option] = element.selectedItem.value; + } else { + displayOptions[option] = optionsAvailable[option]; } } else if(typeof(defValue) == "boolean") { displayOptions[option] = !!element.checked;