Merge pull request #2520 from cmgustavo/bug/ux-30

Bug/ux 30
This commit is contained in:
Matias Alejo Garcia 2015-04-15 14:48:33 -03:00
commit 2297ff3156
3 changed files with 42 additions and 53 deletions

View file

@ -177,7 +177,6 @@ _:-ms-fullscreen, :root .main {
}
.home-wallet {
height: 100%;
background-color: #fff;
}

View file

@ -11,13 +11,6 @@ angular.module('copayApp.controllers').controller('backupController',
var fc = profileService.focusedClient;
this.isEncrypted = fc.isPrivKeyEncrypted();
this.copyText = function(text) {
if (isCordova) {
window.cordova.plugins.clipboard.copy(text);
window.plugins.toast.showShortCenter('Copied to clipboard');
}
};
this.downloadWalletBackup = function() {
backupService.walletDownload(this.password, function() {
$rootScope.$emit('Local/BackupDone');
@ -32,7 +25,6 @@ angular.module('copayApp.controllers').controller('backupController',
this.viewWalletBackup = function() {
var self = this;
this.loading = true;
$timeout(function() {
self.backupWalletPlainText = self.getBackup();
$rootScope.$emit('Local/BackupDone');