Files
grecia/app/assets/javascripts/watch_form_changes.js.coffee
Javi Martín 4d7c124188 Remove unnecessary conditions
The code won't do anything if there are no elements, so there's no need
to check that condition.
2019-09-11 03:14:16 +02:00

27 lines
732 B
CoffeeScript

App.WatchFormChanges =
forms: ->
return $("form[data-watch-changes]")
msg: ->
return $("[data-watch-form-message]").data("watch-form-message")
hasChanged: ->
App.WatchFormChanges.forms().is ->
$(this).serialize() != $(this).data("watchChanges")
checkChanges: ->
if App.WatchFormChanges.hasChanged()
confirm(App.WatchFormChanges.msg())
else
true
initialize: ->
if App.WatchFormChanges.forms().length == 0 || App.WatchFormChanges.msg() == undefined
return
$(document).off("page:before-change").on("page:before-change", App.WatchFormChanges.checkChanges)
App.WatchFormChanges.forms().each ->
form = $(this)
form.data("watchChanges", form.serialize())