remove unnecessary variables/services

This commit is contained in:
Javier 2016-04-07 12:19:51 -03:00
commit f16efeb69e
3 changed files with 4 additions and 5 deletions

View file

@ -1,6 +1,6 @@
'use strict';
angular.module('copayApp.services')
.factory('pushNotificationsService', function($http, $rootScope, $log, isMobile, storageService, configService, lodash, isCordova) {
.factory('pushNotificationsService', function($log, isMobile, storageService, configService, lodash, isCordova) {
var root = {};
var usePushNotifications = isCordova && !isMobile.Windows();