2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-08 17:22:34 +03:00

Resolving merge conflicts

This commit is contained in:
Matt Zabriskie
2016-03-05 23:56:02 -07:00
3 changed files with 23 additions and 3 deletions
+7 -1
View File
@@ -257,7 +257,13 @@ These are the available config options for making requests. Only the `url` is re
xsrfCookieName: 'XSRF-TOKEN', // default
// `xsrfHeaderName` is the name of the http header that carries the xsrf token value
xsrfHeaderName: 'X-XSRF-TOKEN' // default
xsrfHeaderName: 'X-XSRF-TOKEN', // default
// `progress` allows handling of progress events for 'POST' and 'PUT uploads'
// as well as 'GET' downloads
progress: function(progressEvent) {
// Do whatever you want with the native progress event
}
}
```