Remove spurious dependencies from connection
This commit is contained in:
parent
d4a4f1bd7f
commit
eddffd6e63
1 changed files with 14 additions and 3 deletions
|
@ -199,11 +199,22 @@ weechat.factory('handlers', ['$rootScope', 'models', 'plugins', function($rootSc
|
|||
|
||||
}]);
|
||||
|
||||
weechat.factory('connection', ['$q', '$rootScope', '$log', '$store', 'handlers', 'models', 'conn', function($q, $rootScope, $log, storage, handlers, models, conn) {
|
||||
weechat.factory('connection',
|
||||
['$rootScope',
|
||||
'$log',
|
||||
'$store',
|
||||
'handlers',
|
||||
'models',
|
||||
'conn',
|
||||
function($rootScope,
|
||||
$log,
|
||||
storage,
|
||||
handlers,
|
||||
models,
|
||||
conn) {
|
||||
|
||||
protocol = new weeChat.Protocol();
|
||||
|
||||
|
||||
|
||||
// Takes care of the connection and websocket hooks
|
||||
var connect = function (host, port, passwd, ssl, noCompression) {
|
||||
var proto = ssl ? 'wss' : 'ws';
|
||||
|
|
Loading…
Reference in a new issue