fix About

This commit is contained in:
Matias Alejo Garcia 2016-09-02 14:04:19 -03:00
commit 0ed46f1f65
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
2 changed files with 7 additions and 4 deletions

View file

@ -1,6 +1,9 @@
'use strict';
angular.module('copayApp.controllers').controller('preferencesAbout',
function($ionicNavBarDelegate, gettextCatalog) {
function($scope, $version, $ionicNavBarDelegate, gettextCatalog) {
$ionicNavBarDelegate.title(gettextCatalog.getString('About Copay'));
$scope.version = $window.version;
$scope.commit = $window.commitHash;
});