Added import angularjs controller

This commit is contained in:
Mario Colque 2014-04-25 17:34:24 -03:00
commit bc77fabba9
3 changed files with 17 additions and 2 deletions

6
js/controllers/import.js Normal file
View file

@ -0,0 +1,6 @@
'use strict';
angular.module('copay.import').controller('ImportController',
function($scope, $rootScope) {
$scope.title = 'Import a backup';
});