0.0.13 • Published 8 years ago

ember-filepicker v0.0.13

Weekly downloads
1
License
MIT
Repository
github
Last release
8 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

8 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago