Update socket.io.client.service.js

This commit is contained in:
David Baldwynn 2017-04-20 21:44:09 -07:00 committed by GitHub
parent cd7624a867
commit d5072d5ac2

View File

@ -2,12 +2,6 @@
'use strict';
// Create the Socket.io wrapper service
angular
.module('view-form')
.factory('Socket', Socket);
Socket.$inject = ['$timeout', '$window'];
function Socket($timeout, $window) {
@ -63,4 +57,12 @@
return service;
}
angular
.module('view-form')
.factory('Socket', Socket);
Socket.$inject = ['$timeout', '$window'];
}());