docs: Sort uploader plugins, add xhrupload stub.

This commit is contained in:
Renée Kooi 2017-09-06 13:56:58 +02:00
parent ac1a51a11d
commit d1bd8b6183
No known key found for this signature in database
GPG key ID: 30516CF2A8E63718
4 changed files with 24 additions and 3 deletions

View file

@ -1,6 +1,6 @@
---
type: docs
order: 10
order: 11
title: "AwsS3"
permalink: docs/aws-s3/
---

View file

@ -1,6 +1,6 @@
---
type: docs
order: 9
order: 10
title: "Transloadit"
permalink: docs/transloadit/
---

View file

@ -1,5 +1,6 @@
---
order: 7
type: docs
order: 8
title: "Tus"
permalink: docs/tus/
---

View file

@ -0,0 +1,20 @@
---
type: docs
order: 8
title: "XHRUpload"
permalink: docs/xhrupload/
---
The XHRUpload plugin handles classic HTML multipart form uploads, as well as uploads using the HTTP `PUT` method.
## Options
```js
uppy.use(Tus10, {
resume: true,
allowPause: true,
autoRetry: true,
retryDelays: [0, 1000, 3000, 5000]
})
```