2015-12-02 09:53:16 -03:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
angular.module('copayApp.controllers').controller('termOfUseController',
|
2016-08-29 16:48:15 -03:00
|
|
|
function($scope, uxLanguage, $ionicNavBarDelegate, gettextCatalog) {
|
|
|
|
|
$ionicNavBarDelegate.title(gettextCatalog.getString('About Copay'));
|
2015-12-02 09:53:16 -03:00
|
|
|
$scope.lang = uxLanguage.currentLanguage;
|
|
|
|
|
});
|