From 58769fec3f6e85cd5c12f16dd91d36eb87997a6b Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Thu, 30 Oct 2014 18:17:41 -0300 Subject: [PATCH] fix titles --- js/controllers/history.js | 1 + js/controllers/receive.js | 1 + 2 files changed, 2 insertions(+) diff --git a/js/controllers/history.js b/js/controllers/history.js index 36903cfc3..f1cb71927 100644 --- a/js/controllers/history.js +++ b/js/controllers/history.js @@ -7,6 +7,7 @@ angular.module('copayApp.controllers').controller('HistoryController', var w = $rootScope.wallet; + $rootScope.title = 'History'; $scope.loading = false; $scope.lastShowed = false; diff --git a/js/controllers/receive.js b/js/controllers/receive.js index c48755481..7bd2a6cab 100644 --- a/js/controllers/receive.js +++ b/js/controllers/receive.js @@ -4,6 +4,7 @@ angular.module('copayApp.controllers').controller('ReceiveController', function($scope, $rootScope, $timeout, $modal, controllerUtils) { controllerUtils.redirIfNotComplete(); + $rootScope.title = 'Receive'; $scope.loading = false; $scope.showAll = false;