10 lines
295 B
CoffeeScript
10 lines
295 B
CoffeeScript
App.IeAlert =
|
|
set_cookie_and_hide: (event) ->
|
|
event.preventDefault()
|
|
$.cookie('ie_alert_closed', 'true', { path: '/', expires: 365 });
|
|
$('.ie-alert-box').remove()
|
|
|
|
initialize: ->
|
|
$('.ie-alert-box-close-js').on 'click', (event) ->
|
|
App.IeAlert.set_cookie_and_hide(event)
|