nested_form_fields icon indicating copy to clipboard operation
nested_form_fields copied to clipboard

Functions on fields-added get executed twice

Open robbevp opened this issue 6 years ago • 0 comments

I can't seem to figure out why, but function that wait on fields-added seem to be executed twice

So

$(document).on("fields_added.nested_form_fields", function(){
  console.log("hi")
});

gives two times hi in the console

# file.js
var i = 0
$(document).on("fields_added.nested_form_fields", function(){
  i += 1
  console.log(i)
});

results in

# console
1 file.js:44:11
2 file.js:44:11

Any suggestions on what could cause this?

robbevp avatar Aug 19 '19 18:08 robbevp