18 lines
427 B
Plaintext
18 lines
427 B
Plaintext
- if alert || notice
|
|
- text = alert || notice
|
|
%div{:style => "display:none", :id => "flash_container"}
|
|
%center
|
|
%h4= text
|
|
:javascript
|
|
$(function(){
|
|
$("#flash_container").slideDown("slow");
|
|
$("#flash_container").click(function(){
|
|
$(this).slideUp("slow");
|
|
});
|
|
setTimeout("hideFlash()",3000);
|
|
});
|
|
|
|
function hideFlash(){
|
|
$("#flash_container").slideUp("slow");
|
|
}
|