Fixed ios code to work with AFNetwork 3.0.x

This commit is contained in:
Andrew Stephan
2016-02-18 20:31:21 -05:00
parent 434d8dfd2b
commit 340e45a381
6 changed files with 150 additions and 92 deletions
+3
View File
@@ -119,6 +119,9 @@ if (typeof angular !== "undefined") {
acceptAllCerts: function(allow) {
return makePromise(http.acceptAllCerts, [allow]);
},
acceptAllHosts: function(allow) {
return makePromise(http.acceptAllHosts, [allow]);
},
post: function(url, params, headers) {
return makePromise(http.post, [url, params, headers], true);
},