7 lines
241 B
CoffeeScript
7 lines
241 B
CoffeeScript
|
$(document).ready ->
|
||
|
$('#flash_messages .flash').removeClass('flash').each ->
|
||
|
jQuery.gritter.add
|
||
|
image: "/assets/#{$(this).attr('class')}.png",
|
||
|
title: $(this).children('h2').text(),
|
||
|
text: $(this).children('p').text()
|