Merge pull request #304 from tUrG0n/patch-1

Added Ajax for Coffescript
This commit is contained in:
Honza Pokorny 2014-01-02 22:56:22 -08:00
commit 22b1a14cbf

View File

@ -93,3 +93,17 @@ snippet req
# Export # Export
snippet exp snippet exp
${0:root} = exports ? this ${0:root} = exports ? this
snippet ajax
$.ajax
url: "${1:mydomain.com/url}"
type: "${2:POST}"
dataType: "${3:xml/html/script/json}"
data: ${4:data}
complete: (jqXHR, textStatus) ->
${5:// callback}
success: (data, textStatus, jqXHR) ->
${6:// success callback}
error: (jqXHR, textStatus, errorThrown) ->
${0:// error callback}