We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd04745 commit 9bee487Copy full SHA for 9bee487
snippets/coffee/coffee.snippets
@@ -94,16 +94,8 @@ snippet req
94
snippet exp
95
${0:root} = exports ? this
96
97
-
98
-snippet ajax
99
- $.ajax
100
- url: "${1:mydomain.com/url}"
101
- type: "${2:POST}"
102
- dataType: "${3:xml/html/script/json}"
103
- data: ${4:data}
104
- complete: (jqXHR, textStatus) ->
105
- ${5:// callback}
106
- success: (data, textStatus, jqXHR) ->
107
- ${6:// success callback}
108
- error: (jqXHR, textStatus, errorThrown) ->
109
- ${0:// error callback}
+snippet jsonp
+ JSON.parse ${0:jstr}
+# JSON.stringify
+snippet jsons
+ JSON.stringify ${0:object}
0 commit comments