Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #710 from mleanos/Chat-Missing-Auth-DI
Browse files Browse the repository at this point in the history
Add missing dependency injection in Chat
  • Loading branch information
ilanbiala committed Jul 26, 2015
2 parents e1ca1aa + 0fa9b95 commit 0faeb31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/chat/client/controllers/chat.client.controller.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
'use strict';

// Create the 'chat' controller
angular.module('chat').controller('ChatController', ['$scope', 'Socket',
function($scope, Socket) {
angular.module('chat').controller('ChatController', ['$scope', '$location', 'Authentication', 'Socket',
function($scope, $location, Authentication, Socket) {
// Create a messages array
$scope.messages = [];

Expand Down

0 comments on commit 0faeb31

Please sign in to comment.