From b07455150e1108a1ee23de4993939cd93ed37904 Mon Sep 17 00:00:00 2001 From: Andrew Patton Date: Thu, 24 Jul 2014 17:39:58 -0400 Subject: [PATCH] Preserve display of capitalization in filename I noticed that filenames are displayed in all lowercase when in `#attached-list`, which is kinda weird, because filenames aren then shown with original capitalization when they are uploaded and displayed in a comment --- public/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/app.js b/public/js/app.js index 7ffcbd4a3..445effde9 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -593,7 +593,7 @@ function initIssue() { $span.addClass("label"); $span.addClass("label-default"); - $span.append(file.name.toLowerCase()); + $span.append(file.name); $attachedList.append($span); } });