Files
grecia/app/assets/javascripts/investment_report_alert.js.coffee
2019-03-05 21:38:36 +01:00

8 lines
322 B
CoffeeScript

App.InvestmentReportAlert =
initialize: ->
$('#js-investment-report-alert').on 'click', ->
if this.checked && $('#budget_investment_feasibility_unfeasible').is(':checked')
confirm(this.dataset.alert + "\n" + this.dataset.notFeasibleAlert)
else if this.checked
confirm(this.dataset.alert)