Files
nairobi/app/assets/javascripts/ie_alert.js.coffee
Javi Martín b27855c1cf Use double quotes in CoffeeScript files
As we do in the rest of the application.

Note we cannot add a rule enforcing double quotes because CoffeeScript
Lint does not have such rule.
2019-03-06 11:41:21 +01:00

10 lines
290 B
CoffeeScript

App.IeAlert =
set_cookie_and_hide: (event) ->
event.preventDefault()
$.cookie("ie_alert_closed", "true", { path: "/", expires: 365 })
$(".ie-callout").remove()
initialize: ->
$(".ie-callout-close-js").on "click", (event) ->
App.IeAlert.set_cookie_and_hide(event)