diff options
| author | jessib <jessib@leap.se> | 2013-07-09 11:53:58 -0700 | 
|---|---|---|
| committer | jessib <jessib@leap.se> | 2013-07-09 11:53:58 -0700 | 
| commit | 09b7f01cac6df1ae11f4129b20b781b78a3706ac (patch) | |
| tree | 3921eaa5edd03d80e6b402c5c2f88dda6338ab3a /app/helpers | |
| parent | 9979b50848ce27730f880159512933e50d5ae0e4 (diff) | |
| parent | 3113f8b814417a896ad5340fda88927733f8ab22 (diff) | |
Merge branch 'master' into feature/authentication_generic_error
Conflicts:
	app/views/layouts/_messages.html.haml
	app/views/layouts/application.html.haml
	users/app/assets/javascripts/users.js.coffee
Diffstat (limited to 'app/helpers')
| -rw-r--r-- | app/helpers/application_helper.rb | 38 | 
1 files changed, 38 insertions, 0 deletions
| diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index de6be79..1e79990 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1,2 +1,40 @@  module ApplicationHelper + +  # +  # determine title for the page +  # +  def html_title +    if content_for?(:title) +      yield(:title) +    elsif @title +      [@title, ' - ', APP_CONFIG[:domain]].join +    else +      APP_CONFIG[:domain] +    end +  end + +  # +  # markup for bootstrap icon +  # +  # http://twitter.github.io/bootstrap/base-css.html#icons +  # +  def icon(name, color=nil) +    if color.nil? +      color_class = nil +    elsif color == :black +      color_class = 'icon-black' +    elsif color == :white +      color_class = 'icon-white' +    end +    "<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 | 
