Created
February 4, 2014 05:33
-
-
Save victorcreed/8798607 to your computer and use it in GitHub Desktop.
flash message in coffee
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class @FlashMessage | |
constructor: (@message, @flashType) -> | |
initHideFlashMessage: -> | |
$(".alert").slideUp -> $(this).remove() | |
hideFlashMessage: -> | |
setTimeout @initHideFlashMessage, 2000 | |
render: -> | |
$("header").prepend("<p class='alert alert-#{@flashType} no-radius'>#{@message}</p>") | |
@hideFlashMessage() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment