add parameter to controller in termsjs

This commit is contained in:
Gabriel Bazán 2016-09-07 13:54:24 -03:00
parent 6e2a5516ae
commit ffe8df203f
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
'use strict';
angular.module('copayApp.controllers').controller('termsController', function($scope, $log, $state, uxLanguage, profileService, externalLinkService) {
angular.module('copayApp.controllers').controller('termsController', function($scope, $log, $state, $window, uxLanguage, profileService, externalLinkService) {
$scope.lang = uxLanguage.currentLanguage;
$scope.disclaimerUrl = $window.appConfig.disclaimerUrl;