This commit is contained in:
Gabriel Bazán 2015-11-19 15:15:36 -03:00
commit ebedb64237
4 changed files with 5 additions and 4 deletions

View file

@ -93,6 +93,7 @@
</div>
<h4></h4>
</div>
<div class="extra-margin-bottom"></div>

View file

@ -27,7 +27,7 @@
<li ng-click="$root.go('preferencesBwsUrl')">
<i class="icon-arrow-right3 size-24 right text-gray"></i>
<div translate>Wallet Service URL</div>
<div>Wallet Service URL</div>
</li>
<li ng-click="$root.go('delete')">

View file

@ -34,13 +34,13 @@
</span>
</p>
<p translate class="size-14 text-gray" ng-show="index.needsBackup" >
<p class="size-14 text-gray" ng-show="index.needsBackup" >
<span translate>
Need to do backup
</span>
</p>
<button class="button round expand warning" ng-disabled="index.needsBackup" ng-click="preferences.delete()" translate>
<button class="button round expand warning" ng-disabled="index.needsBackup" ng-click="preferences.delete()">
<i class="fi-trash"></i>
<span translate>
DELETE WORDS

View file

@ -1,7 +1,7 @@
'use strict';
angular.module('copayApp.controllers').controller('preferencesDeleteWordsController',
function($scope, $rootScope, $filter, $timeout, $modal, $log, confirmDialog, storageService, notification, profileService, isCordova, go, gettext, gettextCatalog, animationService) {
function(confirmDialog, notification, profileService, go, gettext) {
var self = this;
var fc = profileService.focusedClient;
var msg = gettext('Are you sure you want to delete the backup words?');