fix setting link for mobile

This commit is contained in:
Gustavo Maximiliano Cortez 2015-01-15 15:08:03 -03:00
commit 1eaf39641f
2 changed files with 12 additions and 9 deletions

View file

@ -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) {