13 lines
275 B
JavaScript
13 lines
275 B
JavaScript
// Generated by CoffeeScript 1.12.6
|
|
(function() {
|
|
"use strict";
|
|
App.SendNewsletterAlert = {
|
|
initialize: function() {
|
|
return $("#js-send-newsletter-alert").on("click", function() {
|
|
return confirm(this.dataset.alert);
|
|
});
|
|
}
|
|
};
|
|
|
|
}).call(this);
|