Merge pull request #1518 from ssotomayor/master

Hides backup button on mobile devices since the mobile browsers are not supporting downloading files, as they don't have access to the FS of the device.
This commit is contained in:
Manuel Aráoz 2014-10-02 12:09:59 -03:00
commit 4f82c15f62
2 changed files with 3 additions and 2 deletions

View file

@ -1,8 +1,9 @@
'use strict';
angular.module('copayApp.controllers').controller('MoreController',
function($scope, $rootScope, $location, $filter, backupService, walletFactory, controllerUtils, notification, rateService) {
function($scope, $rootScope, $location, $filter, backupService, walletFactory, controllerUtils, notification, rateService, isMobile) {
var w = $rootScope.wallet;
$scope.isMobile = isMobile.iOS();
$scope.unitOpts = [{
name: 'Satoshis (100,000,000 satoshis = 1BTC)',