Sha256: a2f581ed4be194c6347921b3e6f055334558682f37bbaadcb1dc82c1ca1275f7

Contents?: true

Size: 814 Bytes

Versions: 5

Compression:

Stored size: 814 Bytes

Contents

<%# Used to render a unique flash message styling %>
<%%
 	if request.xhr?
		flash_message = flash.now[:success] || flash.now[:notice] || flash.now[:alert]
		style_classes = ""
	else
		style_classes = "margin-top-10 margin-bottom-5 margin-left-40 margin-right-40"
		flash_message = flash[:success] || flash[:notice] || flash[:alert]
	end
	cls_name = "alert"
	cls_name = 'alert success' if flash.now[:success] || flash[:success]
	cls_name = 'alert warning' if flash.now[:notice] || flash[:notice]
	cls_name = 'alert danger' if flash.now[:alert] || flash[:alert]
	
	flash_message = flash_message.strip if flash_message
	
 %>
<%% unless flash_message.blank? %>
  <div class="<%%= style_classes %> <%%= cls_name %> fade in" data-alert="alert" style="margin-bottom:5px;">
    <%%= flash_message %>
  </div>
<%% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
humdrum-rails-0.1.1 lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/common/_flash_message.html.erb
humdrum-rails-0.0.9 lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/common/_flash_message.html.erb
humdrum-rails-0.0.8 lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/common/_flash_message.html.erb
humdrum-rails-0.0.7 lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/common/_flash_message.html.erb
humdrum-rails-0.0.6 lib/rails/generators/humdrum/layout/templates/views/gumby/layouts/common/_flash_message.html.erb