Update analytics-service.client.directive.js

This commit is contained in:
David Baldwynn 2017-04-22 19:14:43 -07:00 committed by GitHub
parent 40265a9800
commit e8edee2e2d

View file

@ -1,7 +1,7 @@
(function () { (function () {
"use strict"; "use strict";
function SendVisitorData(Socket, $state) { function SendVisitorData() {
// Create a controller method for sending visitor data // Create a controller method for sending visitor data
function send(form, lastActiveIndex) { function send(form, lastActiveIndex) {
@ -60,7 +60,7 @@
.module('forms') .module('forms')
.factory('SendVisitorData', SendVisitorData); .factory('SendVisitorData', SendVisitorData);
SendVisitorData.$inject = ['Socket', '$state', '$http']; SendVisitorData.$inject = [];
}()); }());