Merge pull request #2790 from bechi/add-colours

Add colours
This commit is contained in:
Matias Alejo Garcia 2015-05-29 15:31:21 -03:00
commit ace6c0c248
4 changed files with 11 additions and 8 deletions

View file

@ -382,7 +382,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
self.updateColor = function() {
var config = configService.getSync();
config.colorFor = config.colorFor || {};
self.backgroundColor = config.colorFor[self.walletId] || '#7A8C9E';
self.backgroundColor = config.colorFor[self.walletId] || '#4A90E2';
var fc = profileService.focusedClient;
fc.backgroundColor = self.backgroundColor;
};