www

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

commit 23e4d90d44409ee0cad08103fecd5162dfe20b55
parent 45967da4ce65500c33448a155be481a3bb0fccdf
Author: Simon Kornblith <simon@simonster.com>
Date:   Sun,  3 Apr 2011 20:25:06 +0000

sort translators alphabetically in export dialog


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

diff --git a/chrome/content/zotero/exportOptions.js b/chrome/content/zotero/exportOptions.js @@ -52,6 +52,7 @@ var Zotero_File_Interface_Export = new function() { var addedOptions = new Object(); var translators = window.arguments[0].translators; + translators.sort(function(a, b) { return a.label.localeCompare(b.label) }); // get format popup var formatPopup = document.getElementById("format-popup");