From d379c47032c84d12a3374af1c96a80dc6e8b9b2e Mon Sep 17 00:00:00 2001 From: Mario Colque Date: Mon, 21 Apr 2014 17:01:24 -0300 Subject: [PATCH] removed unnecessary peers files --- index.html | 3 +-- js/app.js | 4 +--- js/controllers/peer.js | 6 ------ 3 files changed, 2 insertions(+), 11 deletions(-) delete mode 100644 js/controllers/peer.js diff --git a/index.html b/index.html index 52c9ff94e..04288084e 100644 --- a/index.html +++ b/index.html @@ -178,7 +178,7 @@ - diff --git a/js/app.js b/js/app.js index c955f458e..1b6ef9813 100644 --- a/js/app.js +++ b/js/app.js @@ -13,8 +13,7 @@ angular.module('copay',[ 'copay.signin', 'copay.socket', 'copay.controllerUtils', - 'copay.setup', - 'copay.peer' + 'copay.setup' ]); angular.module('copay.header', []); @@ -26,6 +25,5 @@ angular.module('copay.walletFactory', []); angular.module('copay.controllerUtils', []); angular.module('copay.signin', []); angular.module('copay.setup', []); -angular.module('copay.peer', []); angular.module('copay.socket', []); diff --git a/js/controllers/peer.js b/js/controllers/peer.js deleted file mode 100644 index 5ae619020..000000000 --- a/js/controllers/peer.js +++ /dev/null @@ -1,6 +0,0 @@ -'use strict'; - -angular.module('copay.peer').controller('PeerController', - function($scope, $rootScope, $location, $routeParams) { - }); -