Skip to content

Commit

Permalink
Fixes #8
Browse files Browse the repository at this point in the history
  • Loading branch information
nicgirault committed Feb 16, 2016
1 parent eea0f45 commit a6e5506
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "angular-trello-api-client",
"main": "dist/angular-trello-api-client.js",
"homepage": "https://github.com/nicgirault/angular-trello-api-client",
"version": "2.1.0",
"version": "2.1.1",
"authors": [
"nicgirault <[email protected]>"
],
Expand Down
2 changes: 1 addition & 1 deletion dist/angular-trello-api-client-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/angular-trello-api-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ angular.module('trello-api-client').provider('TrelloClient', function($authProvi
} else {
$http[method](baseURL + endpoint, config).then(function(response) {
return deferred.resolve(response);
});
})["catch"](deferred.reject);
}
return deferred.promise;
};
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "angular-trello-api-client",
"version": "2.1.0",
"version": "2.1.1",
"description": "",
"main": "gulpfile.js",
"dependencies": {
"gulp-concat": "^2.6.0"
"gulp-concat": "2.6.0"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-coffee": "^2.3.1",
"gulp": "3.9.0",
"gulp-coffee": "2.3.1",
"gulp-minify": "0.0.5"
},
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/provider.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ angular.module 'trello-api-client'
$http[method] baseURL + endpoint, config
.then (response) ->
deferred.resolve response
.catch deferred.reject

deferred.promise

Expand Down

0 comments on commit a6e5506

Please sign in to comment.