Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
shehan committed Apr 5, 2017
1 parent 50fdbc8 commit 671cca8
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions client/js/group-chat-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,8 @@
userAvatar: $scope.contactAuthorAvatar,
groupID: $scope.groupID
};
emitAction(action);
appendChat(action);

emitAction(action);
};

$scope.newCard = function (cardID) {
Expand All @@ -73,9 +72,8 @@
userAvatar: $scope.contactAuthorAvatar,
groupID: $scope.groupID
};
emitAction(action);
appendChat(action);

emitAction(action);
};

$scope.interject = function (id) {
Expand All @@ -101,8 +99,8 @@
userAvatar: $scope.contactAuthorAvatar,
groupID: $scope.groupID
};
emitAction(action);
appendChat(action);
emitAction(action);
};
/************************END: Button Handler Code************************/

Expand Down Expand Up @@ -218,8 +216,8 @@
groupID: $scope.groupID
};
;
emitAction(action);
appendChat(action)
emitAction(action);
}
}
}
Expand Down

0 comments on commit 671cca8

Please sign in to comment.