21 lines
488 B
JavaScript
21 lines
488 B
JavaScript
// Generated by CoffeeScript 1.12.6
|
|
(function() {
|
|
"use strict";
|
|
App.IeAlert = {
|
|
set_cookie_and_hide: function(event) {
|
|
event.preventDefault();
|
|
$.cookie("ie_alert_closed", "true", {
|
|
path: "/",
|
|
expires: 365
|
|
});
|
|
return $(".ie-callout").remove();
|
|
},
|
|
initialize: function() {
|
|
return $(".ie-callout-close-js").on("click", function(event) {
|
|
return App.IeAlert.set_cookie_and_hide(event);
|
|
});
|
|
}
|
|
};
|
|
|
|
}).call(this);
|