Merge pull request #3550 from gabrielbazan7/fix/deleteSecurityPrefrences.js

delete unused file
This commit is contained in:
Matias Alejo Garcia 2015-11-30 10:05:04 -03:00
commit f0e14c896a
1 changed files with 0 additions and 12 deletions

View File

@ -1,12 +0,0 @@
'use strict';
angular.module('copayApp.controllers').controller('securityPreferencesController',
function($scope, profileService) {
var self = this;
var fc = profileService.focusedClient;
self.deleted = false;
if (fc.credentials && !fc.credentials.mnemonicEncrypted && !fc.credentials.mnemonic) {
self.deleted = true;
}
});