Browse Source

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
pull/317/head
Andrew Patton 11 years ago
parent
commit
b07455150e
  1. 2
      public/js/app.js

2
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);
}
});

Loading…
Cancel
Save