aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers/application_helper.rb
diff options
context:
space:
mode:
authoranicet2015-06-23 17:56:38 +0200
committeranicet2015-06-23 17:56:38 +0200
commitc0bd58315467fa7e7a72acd6b20739b67ee86768 (patch)
tree85fa185456b7d99c7b78d32b09dacd3551efaca8 /app/helpers/application_helper.rb
parent57c9b427352afb03b89fcf05afdee0346f1a9834 (diff)
downloadchouette-core-c0bd58315467fa7e7a72acd6b20739b67ee86768.tar.bz2
Helper : font_awesome_classic_tag, fix typo
Diffstat (limited to 'app/helpers/application_helper.rb')
-rw-r--r--app/helpers/application_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 811ea6f4c..d3e9655b9 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -3,7 +3,7 @@ module ApplicationHelper
def font_awesome_classic_tag(name)
name = "fa-file-text-o" if name == "fa-file-csv-o"
name = "fa-file-code-o" if name == "fa-file-xml-o"
- content_tag(:id, nil, {class: "fa #{name}"})
+ content_tag(:i, nil, {class: "fa #{name}"})
end
def stop_area_picture_url(stop_area)