0.0.13 • Published 9 years ago

ember-filepicker v0.0.13

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

Ember Filepicker

(This is a WIP and the documentation is not complete)

This addon provides a shim to the file upload service library filepicker.io

Steps to Use

  1. Install the addon
ember install ember-filepicker
  1. Add the API key config/environment.js file
filepicker: {
  key: '<filepicker.io API key>'
}
  1. Add the filepicker component to your template
{{ember-filepicker onSelection=(action 'fileSelected')}}
  1. Handle the returned list of uploaded files in the 'fileSelected' action
actions: {
  fileSelected(file) {
    // 'file' will contain a list of files if multiple mode is enabled
  }
}
0.0.13

9 years ago

0.0.12

9 years ago

0.0.11

9 years ago

0.0.10

9 years ago

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago