0.0.13 • Published 10 years ago

ember-filepicker v0.0.13

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

10 years ago

0.0.12

10 years ago

0.0.11

10 years ago

0.0.10

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago