20d6f96928
* dont fadeout so user can read * show inside content block so user can notice it Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
14 lines
268 B
CoffeeScript
14 lines
268 B
CoffeeScript
class Flash
|
|
constructor: (message, type)->
|
|
flash = $(".flash-container")
|
|
flash.html("")
|
|
|
|
$('<div/>',
|
|
class: "flash-#{type}",
|
|
text: message
|
|
).appendTo(".flash-container")
|
|
|
|
flash.click -> $(@).fadeOut()
|
|
flash.show()
|
|
|
|
@Flash = Flash
|