Adds title on close alerts link

This commit is contained in:
Alberto Garcia Cabeza
2015-09-22 18:00:56 +02:00
parent 3df06ebcb4
commit bf08cb582f
8 changed files with 11 additions and 9 deletions

View File

@@ -26,14 +26,14 @@
<div class="admin-content small-12 medium-9 column">
<% if notice %>
<div data-alert class="alert-box radius success">
<a href="#" class="close">&times;</a>
<a href="#" class="close" title="<%= t("application.close") %>">&times;</a>
<%= notice %>
</div>
<% end %>
<% if alert %>
<div data-alert class="alert-box radius alert">
<a href="#" class="close">&times;</a>
<a href="#" class="close" title="<%= t("application.close") %>">&times;</a>
<%= alert %>
</div>
<% end %>