internetee-registry/app/views/registrar/shared/_flash_messages.haml
2015-04-10 10:59:39 +03:00

4 lines
196 B
Text

- display = (flash.empty?) ? 'none' : 'block'
#flash{style: "display: #{display};"}
- type = (flash[:notice]) ? 'bg-success' : 'bg-danger'
.alert{class: type}= flash[:notice] || flash[:alert]