uncomment create function

This commit is contained in:
Gabriel Bazán 2015-11-17 15:49:17 -03:00
commit e1ce85745b

View file

@ -9,7 +9,7 @@ angular.module('copayApp.controllers').controller('disclaimerController',
go.walletHome(); go.walletHome();
}; };
var create = function () { var create = function() {
$scope.creatingProfile = true; $scope.creatingProfile = true;
profileService.create({}, function(err) { profileService.create({}, function(err) {
@ -32,6 +32,6 @@ angular.module('copayApp.controllers').controller('disclaimerController',
}); });
}; };
// create(); create();
}); });