gitlabhq/app/views/layouts/_flash.html.haml

18 lines
421 B
Plaintext
Raw Normal View History

2011-10-08 23:36:38 +02:00
- if alert || notice
- text = alert || notice
%div{style: "display:none", id: "flash_container"}
2012-02-12 18:47:37 +01:00
%center
%h4= text
2011-10-08 23:36:38 +02:00
:javascript
$(function(){
$("#flash_container").slideDown("slow");
$("#flash_container").click(function(){
$(this).slideUp("slow");
2011-10-08 23:36:38 +02:00
});
2012-01-28 10:54:11 +01:00
setTimeout("hideFlash()",3000);
2011-10-08 23:36:38 +02:00
});
function hideFlash(){
$("#flash_container").slideUp("slow");
}