Skip to content

Commit

Permalink
reversed the order of the file list so hopefully it will be alphabetical
Browse files Browse the repository at this point in the history
  • Loading branch information
scottkf committed May 10, 2011
1 parent f540782 commit 2be9d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/massuploadutility.js
Expand Up @@ -79,7 +79,7 @@
$("#file_list").show();
$.each(files, function (k,v) {
p = "<p id='"+idSafeFilename(v.name)+"'><img src='"+urlAssets + "/images/queued.png' />"+v.name+"</p>";
$("#file_list").prepend(p);
$("#file_list").append(p);
});
}
},
Expand Down

0 comments on commit 2be9d0b

Please sign in to comment.