Closed m-herbst closed 6 years ago
Implemented jeditable in a backbone app. Everything worked fine, except when submitting by onblur and clicking a link on the page.
form.submit() submitted form by http-get-request (url was updated)
/* prevent double submit if submit was clicked */ t = setTimeout(function() { form.submit(); }, 0);
Got that fixed by changing time till timeout from 200 to 0.
Now i can click the link and the form is submitted correctly.
Implemented jeditable in a backbone app. Everything worked fine, except when submitting by onblur and clicking a link on the page.
form.submit() submitted form by http-get-request (url was updated)
Got that fixed by changing time till timeout from 200 to 0.
Now i can click the link and the form is submitted correctly.