mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
16 lines
310 B
CoffeeScript
16 lines
310 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()
|
|
setTimeout (-> flash.fadeOut()), 5000
|
|
|
|
@Flash = Flash
|