puckbag / meteor-dropzone

A Meteor smart package for the popular file picker http://www.dropzonejs.com/

Home Page:https://atmospherejs.com/dbarrett/dropzonejs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Meteor-Dropzone Build Status

Dropzone.js

DropzoneJS is an open source library that provides drag'n'drop file uploads with image previews.

Compatibility

Intended for versions of Meteor 1.0

Installation

    meteor add dbarrett:dropzonejs

Usage

In your handlebar templates you can just include the template Dropzonejs:

    {{> dropzone url='http://somewebsite.com/upload' id='dropzoneDiv'}}

Which will post any uploaded files to the url of your choice.

id is optional, if you do not set one, a random string will be used. url is not optional you must pass a url to the template.

Options

If you would like more control over your Dropzone. You can pass the full range of options found in the Dropzone documentation to the template e.g.

    {{> dropzone url='http://somewebsite.com/upload' id='dropzoneDiv' maxFiles=4}}

Or you can set the default options that every dropzone instance is instantiated with globally:

	Meteor.Dropzone.options.maxFiles = 4;

These will be overridden by any parameters set in the template helper.

A full list of options can be found in the Dropzone documentation

Contributors

Todo

Pull requests are very welcome if you are looking for a starting point:

  • Examples

About

A Meteor smart package for the popular file picker http://www.dropzonejs.com/

https://atmospherejs.com/dbarrett/dropzonejs

License:MIT License


Languages

Language:JavaScript 83.4%Language:CSS 16.5%Language:HTML 0.1%