Fixed fields not being sent

This commit is contained in:
Phil Hughes 2016-09-05 17:14:42 +01:00
parent 3354bfd8f9
commit 68c7b52364
1 changed files with 3 additions and 2 deletions

View File

@ -33,9 +33,10 @@
formSubmit() {
const $this = $(this);
$this.disable()
.closest('form')
$this.closest('form')
.trigger("submit.rails");
$this.disable();
}
formSuccess() {