Wallet/src/js/controllers/preferencesAbout.js

9 lines
312 B
JavaScript
Raw Normal View History

2015-04-25 12:37:04 -03:00
'use strict';
angular.module('copayApp.controllers').controller('preferencesAbout',
2016-09-02 14:04:19 -03:00
function($scope, $version, $ionicNavBarDelegate, gettextCatalog) {
2016-08-29 16:48:15 -03:00
$ionicNavBarDelegate.title(gettextCatalog.getString('About Copay'));
2016-09-02 14:04:19 -03:00
$scope.version = $window.version;
$scope.commit = $window.commitHash;
2016-08-29 16:48:15 -03:00
});