Merge pull request #1202 from matiaspando/feature-adding-commit-hash

Added commit Hash to home page
This commit is contained in:
Matias Alejo Garcia 2014-08-28 10:16:07 -03:00
commit 297b5625bc
5 changed files with 19 additions and 3 deletions

View file

@ -4,6 +4,7 @@ angular.module('copayApp.controllers').controller('VersionController',
function($scope, $rootScope, $http, notification) {
$scope.version = copay.version;
$scope.commitHash = copay.commitHash;
$scope.networkName = config.networkName;
$http.get('https://api.github.com/repos/bitpay/copay/tags').success(function(data) {