d1211e0ada
This adds a new feature to `Flash` that allows to pin it after a specified selector. This removes a fixed position from such award-emoji alert, and makes it responsive by design of selector that this alert is pinned to. Closes #3996
16 lines
344 B
CoffeeScript
16 lines
344 B
CoffeeScript
class @Flash
|
|
constructor: (message, type)->
|
|
@flash = $(".flash-container")
|
|
@flash.html("")
|
|
|
|
innerDiv = $('<div/>',
|
|
class: "flash-#{type}",
|
|
text: message
|
|
)
|
|
innerDiv.appendTo(".flash-container")
|
|
|
|
@flash.click -> $(@).fadeOut()
|
|
@flash.show()
|
|
|
|
pinTo: (selector) ->
|
|
@flash.detach().appendTo(selector)
|