better function name

This commit is contained in:
Gustavo Maximiliano Cortez 2014-12-09 16:20:19 -03:00
commit 6facb74886
4 changed files with 9 additions and 4 deletions

View file

@ -1,6 +1,6 @@
'use strict';
angular.module('copayApp.controllers').controller('CreateProfileController', function($scope, $rootScope, $location, $timeout, notification, pluginManager, identityService, pinService, isMobile, configService) {
angular.module('copayApp.controllers').controller('CreateProfileController', function($scope, $rootScope, $location, $timeout, notification, pluginManager, identityService, pinService, isMobile, configService, go) {
var _credentials, _firstpin;
@ -172,4 +172,8 @@ angular.module('copayApp.controllers').controller('CreateProfileController', fun
});
};
$scope.openExternalLink = function(url) {
go.openExternalLink(url);
};
});