0.0.3 • Published 11 years ago

dubdrop v0.0.3

Weekly downloads
11
License
-
Repository
github
Last release
11 years ago

dubdrop

Simple drag and drop file handler.

Progressively enhances file inputs to allow for dragging and dropping of files and running each file through async tasks.

Usage

var dubdrop = require('dubdrop');

var $input = dubdrop('#file-input', {
    'tasks': [
        function readFile (file, callback) {
            var reader = new FileReader();

            reader.onload = function (e) {
                console.log(file.name, ' loaded');
                console.log(e.target.result);

                callback(null, file);
            };

            reader.readAsText(file);
        },

        function trasnloadThis (file, callback) {
            // handle transloadit
        }
    ]
});

Contributing

Running example:

npm start
0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago