Skip to content

Instantly share code, notes, and snippets.

@Palleas
Created August 3, 2010 14:31
Show Gist options
  • Save Palleas/506467 to your computer and use it in GitHub Desktop.
Save Palleas/506467 to your computer and use it in GitHub Desktop.
$(document).ready(function()
{
// flash messages
var ffm = $(".flash_message:first")
if (ffm.size())
{
$.notifyBar({
html: ffm.html(),
cls: ffm.hasClass("flash_notice") ? "success" : "error",
delay: 2000,
animationSpeed: "normal"
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment