Merge pull request #385 from matiu/feature/txprposal-limit

Feature/txprposal limit
This commit is contained in:
Mario Colque 2014-05-15 17:58:48 -03:00
commit 7a9e18023d
17 changed files with 141 additions and 97 deletions

View file

@ -1,7 +1,6 @@
'use strict';
angular.module('copay.footer').controller('FooterController',
function($scope) {
angular.module('copay.footer').controller('FooterController', function($scope, $http) {
if (config.themes && Array.isArray(config.themes) && config.themes[0]) {
$scope.themes = config.themes;
@ -15,5 +14,5 @@ angular.module('copay.footer').controller('FooterController',
$scope.change_theme = function(name) {
$scope.theme = 'css/tpl-' + name + '.css';
};
$scope.version = copay.version;
});