Strict mode is supported by 98% of the browsers, including Internet Explorer 10, and it helps developers avoid common JavaScript pitfalls.
7 lines
156 B
CoffeeScript
7 lines
156 B
CoffeeScript
"use strict"
|
|
|
|
App.SendAdminNotificationAlert =
|
|
initialize: ->
|
|
$("#js-send-admin_notification-alert").on "click", ->
|
|
confirm(this.dataset.alert)
|