sahusoftcom / plupload-angular-directive

An angular directive wrapper for the cross browser upload script plupload.
Apache License 2.0
61 stars 32 forks source link

This repo is not being maintained anymore. Use it on your own.

Angular plupload directive

Bower version

Demo and Documentation @ http://sahusoftcom.github.io/plupload-angular-directive

The Demo and Documentation page will give you a fair idea on how to use it.

Quick example

<button pl-upload pl-progress-model="percent" pl-auto-upload="true" pl-files-model="files">Upload Files</button>

Installation

$ bower install plupload-angular-directive

Roadmap

    • DONE - Implement a variable $response in onFileUploaded event, so you can write
    on-file-uploaded="action($response)"
    • DONE - Add a config service provider for global configurations like path for SWF and SilverLight files
    • DONE - Implement as a bower component.

Upcoming

  1. Provide chunk_size and other missing features
  2. Fix the Issue: HTML4 support in plUpload is provided using a hidden upload form element and plUpload appends that to the body which is absolutely positioned. It remains in the DOM till the life cycle of the Angular app and may lead to a clickable area which is not visible.
  3. Check Drag & Drop issues and add to the documentation.