Strict mode is supported by 98% of the browsers, including Internet Explorer 10, and it helps developers avoid common JavaScript pitfalls.
12 lines
304 B
CoffeeScript
12 lines
304 B
CoffeeScript
"use strict"
|
|
|
|
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)
|