From 4aefd0d4f0a7f2f860d0353ccf93254e9ed5e5ac Mon Sep 17 00:00:00 2001 From: ssotomayor Date: Thu, 30 Oct 2014 18:15:20 -0300 Subject: [PATCH] Removes notification. --- js/controllers/receive.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/controllers/receive.js b/js/controllers/receive.js index c6dc6ad5a..fa8731c57 100644 --- a/js/controllers/receive.js +++ b/js/controllers/receive.js @@ -1,7 +1,7 @@ 'use strict'; angular.module('copayApp.controllers').controller('ReceiveController', - function($scope, $rootScope, $timeout, $modal, controllerUtils, notification) { + function($scope, $rootScope, $timeout, $modal, controllerUtils) { controllerUtils.redirIfNotComplete(); $scope.loading = false; @@ -17,7 +17,6 @@ angular.module('copayApp.controllers').controller('ReceiveController', controllerUtils.updateAddressList(); $scope.loading = false; $scope.isNewAddr = true; - notification.info("Info", "New Address was created"); }, 1); }); };