Skip to content

Commit

Permalink
fixed grunt error
Browse files Browse the repository at this point in the history
  • Loading branch information
jduttondesign committed Dec 3, 2016
1 parent 793ef68 commit c55bb82
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions javascripts/factories/BoardFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ var getSingleBoard = function(boardId){
};

var editBoard = function(editBoard){
console.log("factory edit", editBoard);
return $q((resolve, reject)=>{
$http.put(`${FIREBASE_CONFIG.databaseURL}/boards/${editBoard.id}.json`,
JSON.stringify({
Expand All @@ -82,8 +81,6 @@ var getSingleBoard = function(boardId){
};


return {getBoardView:getBoardView,
postNewBoard:postNewBoard, deleteBoard:deleteBoard,
getSingleBoard:getSingleBoard, editBoard:editBoard};
return {getBoardList:getBoardList, postNewBoard:postNewBoard, deleteBoard:deleteBoard, getSingleBoard:getSingleBoard, editBoard:editBoard};
});

0 comments on commit c55bb82

Please sign in to comment.