create view and controller refactor

This commit is contained in:
Gabriel Bazán 2017-05-22 21:28:41 -03:00
commit d55e756e6a
6 changed files with 33 additions and 30 deletions

View file

@ -341,7 +341,8 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
url: '/create-personal',
views: {
'tab-home@tabs': {
templateUrl: 'views/tab-create-personal.html'
templateUrl: 'views/tab-create-personal.html',
controller: 'createController'
},
}
})
@ -349,7 +350,8 @@ angular.module('copayApp').config(function(historicLogProvider, $provide, $logPr
url: '/create-shared',
views: {
'tab-home@tabs': {
templateUrl: 'views/tab-create-shared.html'
templateUrl: 'views/tab-create-shared.html',
controller: 'createController'
},
}
})