Skip to content

Instantly share code, notes, and snippets.

@seb
Created December 8, 2010 14:21
Show Gist options
  • Save seb/733333 to your computer and use it in GitHub Desktop.
Save seb/733333 to your computer and use it in GitHub Desktop.
header code for twitter notification bar
<script type="text/javascript" charset="utf-8">
$(document).ready(function () {
<%= "flash('#{flash[:notice]}')" if flash[:notice] %>
});
function flash(message) {
$('#flash').html(message).slideDown("slow").delay(2500);
$('#flash').html(message).slideUp("slow");
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment