|
jQuery ->
$("a[rel~=popover], .has-popover").popover()
$("a[rel~=tooltip], .has-tooltip").tooltip()
$ ->
flashCallback = ->
$(".flash-message").fadeOut()
$(".flash-message").bind 'click', (ev) =>
$(".flash-message").fadeOut()
setTimeout flashCallback, 4000
$ ->
alertCallback = ->
$(".alert").fadeOut()
$(".alert").bind 'click', (ev) =>
$(".alert").fadeOut()
setTimeout alertCallback, 4000
|