settings: show wallet network on sidebar

This commit is contained in:
Manuel Araoz 2014-09-10 11:47:41 -07:00
commit 4cfe87490f
4 changed files with 5 additions and 7 deletions

View file

@ -37,7 +37,6 @@ angular.module('copayApp.controllers').controller('OpenController', function($sc
try {
w = walletFactory.open($scope.selectedWalletId, passphrase);
} catch (e) {
throw e;
errMsg = e.message;
};
if (!w) {

View file

@ -3,9 +3,11 @@
angular.module('copayApp.controllers').controller('VersionController',
function($scope, $rootScope, $http, notification) {
var w = $rootScope.wallet;
$scope.version = copay.version;
$scope.commitHash = copay.commitHash;
$scope.networkName = config.networkName;
$scope.networkName = w ? w.getNetworkName() : '';
$scope.defaultLanguage = config.defaultLanguage;
if (_.isUndefined($rootScope.checkVersion))
$rootScope.checkVersion = true;
@ -30,4 +32,4 @@ angular.module('copayApp.controllers').controller('VersionController',
});
}
});
});

View file

@ -80,7 +80,6 @@ WalletFactory.prototype._checkRead = function(walletId) {
* @return {string} network name
*/
WalletFactory.prototype.obtainNetworkName = function(obj) {
console.log(JSON.stringify(obj));
return obj.networkName ||
obj.opts.networkName ||
obj.publicKeyRing.networkName ||
@ -107,8 +106,6 @@ WalletFactory.prototype.fromObj = function(obj, skipFields) {
throw new Error('unknown field:' + k);
});
alert(networkName);
var w = Wallet.fromObj(obj, this.storage, this.networks[networkName], this.blockchains[networkName]);
if (!w) return false;
this._checkVersion(w.version);

View file

@ -1,6 +1,6 @@
<div ng-controller="VersionController">
<small>v{{version}} ({{defaultLanguage}})</small>
<small>#{{commitHash}}</small>
<small ng-if="networkName=='testnet'">[ {{networkName}} ]</small>
<small ng-if="networkName ==='testnet' || networkName ==='livenet'">[ {{networkName}} ]</small>
</div>