Skip to content

Commit

Permalink
added repo url, corrected README
Browse files Browse the repository at this point in the history
  • Loading branch information
mminkoff committed May 19, 2017
1 parent e94b241 commit dbe6c6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Ember-filestack

[![npm version](https://badge.fury.io/js/ember-filestack.svg)](http://badge.fury.io/js/ember-filestack)
[![Build Status](https://travis-ci.org/mminkoff/ember-filestack.svg)](https://travis-ci.org/mminkoff/ember-filestack)
[![Build Status](https://travis-ci.org/mminkoff/ember-filestack.svg)](https://travis-ci.org/mminkoff/ember-filestack.svg?branch=master)
[![Ember Observer Score](http://emberobserver.com/badges/ember-filestack.svg)](http://emberobserver.com/addons/ember-filestack)

Provides file picking, storing, and converting funtionality from [Filestack](https://www.filestack.com) using v3+ of their API.
Expand All @@ -28,7 +28,7 @@ module.exports = function(environment) {
* Use the filestack.com documentation for options like extensions and services.
* In your template:
```handlebars
{{ember-filestack-picker options=options onSelection='fileSelected' onClose='onClose' onError='onError'}}
{{ember-filestack-picker options=options onSelection=(action 'fileSelected') onClose=(action 'onClose') onError=(action 'onError')}}
```
* You should pass options to determine the behavior of the picker. Documentation can be found here: https://www.filestack.com/docs/javascript-api/pick-v3.

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-filestack",
"version": "0.0.1",
"version": "0.0.2",
"description": "Ember Addon for https://filestack.com support",
"keywords": [
"ember-addon"
Expand All @@ -11,7 +11,7 @@
"doc": "doc",
"test": "tests"
},
"repository": "",
"repository": "https://github.com/mminkoff/ember-filestack",
"scripts": {
"build": "ember build",
"start": "ember server",
Expand Down

0 comments on commit dbe6c6b

Please sign in to comment.