onboarding restore feature

This commit is contained in:
Gabriel Bazán 2016-08-30 11:33:32 -03:00
commit 7584d2b145
8 changed files with 30 additions and 13 deletions

View file

@ -0,0 +1,11 @@
'use strict';
angular.module('copayApp.controllers').controller('welcomeController', function($scope, $state, $ionicPopup, profileService) {
$scope.goImport = function() {
$state.go('add.import.phrase', {
fromOnboarding: true
});
}
});