Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKoen Punt <koen@koenpunt.nl>2012-11-18 20:41:41 +0400
committerKoen Punt <koen@koenpunt.nl>2012-11-18 20:41:41 +0400
commit3ac1f9459a481fa77be2c0c1b68d4f1ccc5fe9f9 (patch)
tree3b1e33a939e47b3c3036edfab01a65a08418f196 /app/helpers/commits_helper.rb
parentb339c747a9943e9961239a234dcd6e16566a53e1 (diff)
Optimized commit diff views, now showing file size and file mode changes
Replaced commit status images (diff_file_*.png) with fontawesome icons
Diffstat (limited to 'app/helpers/commits_helper.rb')
-rw-r--r--app/helpers/commits_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/commits_helper.rb b/app/helpers/commits_helper.rb
index 135d002f215..2349888ed7a 100644
--- a/app/helpers/commits_helper.rb
+++ b/app/helpers/commits_helper.rb
@@ -57,9 +57,9 @@ module CommitsHelper
def image_diff_class(diff)
if diff.deleted_file
- "diff_image_removed"
+ "diff_removed"
elsif diff.new_file
- "diff_image_added"
+ "diff_added"
else
nil
end