passman/js/app/controllers/main.js
2016-09-10 23:30:17 +02:00

13 lines
297 B
JavaScript

'use strict';
/**
* @ngdoc function
* @name passmanApp.controller:MainCtrl
* @description
* # MainCtrl
* Controller of the passmanApp
*/
angular.module('passmanApp')
.controller('MainCtrl', ['$scope', 'VaultService', function ($scope, VaultService) {
$scope.selectedVault = false;
}]);