Guest User

Untitled

a guest
Oct 18th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. .ajax(
  2. url: @form.attr("action")
  3. data: @form.serialize()
  4. global: false
  5. type: "POST"
  6. success: this._success
  7. error: this._error
  8.  
  9. )
  10.  
  11. _success: (e) =>
  12. console.log(e)
  13. @modal.dialog("close")
  14. _error: (jqXHR, textStatus, errorThrown) =>
  15. console.log(JSON.parse(jqXHR.responseText))
Add Comment
Please, Sign In to add comment