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(){
|
2011-10-26 15:46:25 +02:00
|
|
|
$("#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");
|
|
|
|
}
|