Skip to content
Snippets Groups Projects
Commit 1f43bc9c authored by Jeff Sturek's avatar Jeff Sturek
Browse files

Merge branch 'update-notice' into 'master'

Implement DCF Notices

See merge request dxg/unl-resource-scheduler!24
parents 3a46239c ac21a021
Branches
No related tags found
1 merge request!24Implement DCF Notices
......@@ -131,24 +131,19 @@
<% unless session["notice"].nil? %>
<% notices = session.delete("notice") %>
<% notices.each do |notice| %>
<% notice_class = '' %>
<% notice_class = 'dcf-notice-info' %>
<% case notice[:type]
when 'success', :success
notice_class = 'affirm'
notice_class = 'dcf-notice-success'
when 'failure', :failure
notice_class = 'negate'
notice_class = 'dcf-notice-warning'
when 'alert', 'danger', 'error', :error, :alert, :danger
notice_class = 'alert' %>
notice_class = 'dcf-notice-warning' %>
<% end %>
<div id="notice" class="wdn_notice <%= notice_class %>">
<div class="close">
<a href="#" title="Close this notice">Close this notice</a>
</div>
<div class="message">
<h4><%= notice[:header] %></h4>
<div class="message-content">
<%= notice[:message] %>
</div>
<div id="notice" class="dcf-notice <%= notice_class %>" hidden>
<h2><%= notice[:header] %></h2>
<div class="message-content">
<%= notice[:message] %>
</div>
</div>
<% end %>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment