Added import angularjs controller
This commit is contained in:
parent
7849304bd7
commit
bc77fabba9
3 changed files with 17 additions and 2 deletions
|
|
@ -15,7 +15,8 @@ var copayApp = window.copayApp = angular.module('copay',[
|
|||
'copay.controllerUtils',
|
||||
'copay.setup',
|
||||
'copay.directives',
|
||||
'copay.video'
|
||||
'copay.video',
|
||||
'copay.import'
|
||||
]);
|
||||
|
||||
angular.module('copay.header', []);
|
||||
|
|
@ -30,4 +31,5 @@ angular.module('copay.setup', []);
|
|||
angular.module('copay.socket', []);
|
||||
angular.module('copay.directives', []);
|
||||
angular.module('copay.video', []);
|
||||
angular.module('copay.import', []);
|
||||
|
||||
|
|
|
|||
6
js/controllers/import.js
Normal file
6
js/controllers/import.js
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copay.import').controller('ImportController',
|
||||
function($scope, $rootScope) {
|
||||
$scope.title = 'Import a backup';
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue