Wallet/src/js/controllers/onboarding/welcomeController.js

11 lines
257 B
JavaScript
Raw Normal View History

2016-08-30 11:33:32 -03:00
'use strict';
angular.module('copayApp.controllers').controller('welcomeController', function($scope, $state, $ionicPopup, profileService) {
$scope.goImport = function() {
$state.go('add.import.phrase', {
fromOnboarding: true
});
}
});