Explorar el Código

Leave tus out of Dropbox example

Kevin van Zonneveld hace 9 años
padre
commit
382c09897c
Se han modificado 1 ficheros con 2 adiciones y 3 borrados
  1. 2 3
      website/src/examples/dropbox/js/app.es6

+ 2 - 3
website/src/examples/dropbox/js/app.es6

@@ -1,10 +1,9 @@
 import Uppy from 'uppy/core';
-import { Dropbox, Tus10 } from 'uppy/plugins';
+import { Dropbox } from 'uppy/plugins';
 
 const uppy = new Uppy({wait: false});
 const files = uppy
-  .use(Dropbox, {selector: '#upload-target'})
-  .use(Tus10, {endpoint: 'http://master.tus.io:8080'})
+  .use(Dropbox, {selector: '#target'})
   .run();
 
 console.log(uppy.type);