gitlab-org--gitlab-foss/app/assets/javascripts/flash.js.coffee

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()