mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
13 lines
253 B
CoffeeScript
13 lines
253 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()
|