diff --git a/js/controllers/homeWallet.js b/js/controllers/homeWallet.js index c9ac95d22..849bfbb1f 100644 --- a/js/controllers/homeWallet.js +++ b/js/controllers/homeWallet.js @@ -1,10 +1,8 @@ 'use strict'; -angular.module('copayApp.controllers').controller('HomeWalletController', function($scope, $rootScope, $timeout, $filter, $modal, rateService, notification, txStatus, identityService) { +angular.module('copayApp.controllers').controller('HomeWalletController', function($scope, $rootScope, $timeout, $filter, $modal, rateService, notification, txStatus, identityService, isMobile) { - $scope.initHome = function() { - $rootScope.title = 'Home'; - }; + $scope.isMobile = isMobile.any(); $scope.openTxModal = function(tx) { var ModalInstanceCtrl = function($scope, $modalInstance) { diff --git a/views/homeWallet.html b/views/homeWallet.html index 8ad57b533..1ac98ce42 100644 --- a/views/homeWallet.html +++ b/views/homeWallet.html @@ -1,6 +1,6 @@ -