Skip to content

Commit

Permalink
Fix semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
norberteder committed Nov 20, 2016
1 parent 3334dd4 commit d44acd6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Trello.prototype.updateCardList = function (cardId, listId, callback) {

Trello.prototype.getMember = function(memberId, callback) {
return makeRequest(rest.get, this.uri + '/1/member/' + memberId, {query: this.createQuery()}, callback);
}
};

Trello.prototype.getMemberCards = function (memberId, callback) {
return makeRequest(rest.get, this.uri + '/1/members/' + memberId + '/cards', {query: this.createQuery()}, callback);
Expand Down Expand Up @@ -293,5 +293,4 @@ Trello.prototype.addStickerToCard = function(cardId, image, left, top, zIndex, r
return makeRequest(rest.post, this.uri+'/1/cards/' + cardId + '/stickers', {query:query, data:data}, callback);
};


module.exports = Trello;
module.exports = Trello;

0 comments on commit d44acd6

Please sign in to comment.