diff options
author | elijah <elijah@riseup.net> | 2013-06-28 20:38:14 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-07-04 04:04:55 -0700 |
commit | 4863ce5e78d880f1ca8a1874cd03022afb061f4a (patch) | |
tree | a0a5c72333f90f7656633aad39110346f9404e9a /app/helpers/application_helper.rb | |
parent | 7d2163263c8e5af7f4d7a2d40cd55eefac188e58 (diff) |
new layout for the home buttons
Diffstat (limited to 'app/helpers/application_helper.rb')
-rw-r--r-- | app/helpers/application_helper.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index a236a0a..1e79990 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -29,4 +29,12 @@ module ApplicationHelper "<i class=\"icon-#{name} #{color_class}\"></i> ".html_safe end + def big_icon(name, color=nil) + "<i class=\"big-icon-#{name}\"></i> ".html_safe + end + + def format_flash(msg) + html_escape(msg).gsub('[b]', '<b>').gsub('[/b]', '</b>').html_safe + end + end |