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:
authorJose Ivan Vargas <jvargas@gitlab.com>2017-11-16 22:34:15 +0300
committerJose Ivan Vargas <jvargas@gitlab.com>2017-12-19 21:44:46 +0300
commita623ddb0dcdc42b0bd4f9d20c79e82387d9b5547 (patch)
tree6768bbb26c1d20c06ca88eab1b6c43ec98787f0b /app/helpers
parentc034594f2c19461baf8034aeb52dbf17e694fc21 (diff)
replaced download icon for the sprite based one
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/blob_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/blob_helper.rb b/app/helpers/blob_helper.rb
index 556ed233ccf..613a0db3556 100644
--- a/app/helpers/blob_helper.rb
+++ b/app/helpers/blob_helper.rb
@@ -232,7 +232,7 @@ module BlobHelper
return if blob.empty?
if blob.raw_binary? || blob.stored_externally?
- icon = icon('download')
+ icon = sprite_icon('download')
title = 'Download'
else
icon = icon('file-code-o')