svelte-dropzone icon indicating copy to clipboard operation
svelte-dropzone copied to clipboard

Your example from Readme.md is not working out of the box

Open thinkrapido opened this issue 5 years ago • 3 comments

the callback functions are not called and you use <Dropzone/> Tag which is wrong.

It should be to correspond with your code

thinkrapido avatar Dec 20 '19 13:12 thinkrapido

import Dropzone from "dropzone"; this line is missing in your npm published package! oh-buddy

thinkrapido avatar Dec 20 '19 15:12 thinkrapido

import Dropzone from "dropzone"; this line is missing in your npm published package! oh-buddy

Exactly. Error Dropzone is not defined

benkissi avatar Feb 13 '20 09:02 benkissi

After reading dropzone doc, I figured out that we need manually download dropzone.min.js and source it in your index.html. This works, but another warning occurs, from Dropzone itself: Dropzone already attached.

multics avatar Mar 23 '20 08:03 multics