- added function "setRequestTimeout" to set the timeout for all further requests and to prevent to "wait forever" on Android in case the server is not responding

- updated change log
- incremented version for release
This commit is contained in:
Jochen Becker
2017-08-10 10:03:38 +02:00
parent 14eef1ca66
commit d84a222dda
15 changed files with 98 additions and 33 deletions
+3
View File
@@ -50,6 +50,9 @@ function registerService(http) {
removeCookies: function (url) {
return http.removeCookies(url);
},
setRequestTimeout: function (timeout) {
return http.setRequestTimeout(timeout);
},
enableSSLPinning: function (enable) {
return makePromise(http.enableSSLPinning, [enable]);
},