mirror of
https://github.com/nextcloud/passman.git
synced 2025-11-10 06:01:32 +08:00
17 lines
313 B
JavaScript
17 lines
313 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @ngdoc function
|
|
* @name passmanApp.controller:MenuCtrl
|
|
* @description
|
|
* # MenuCtrl
|
|
* Controller of the passmanApp
|
|
*/
|
|
angular.module('passmanApp')
|
|
.controller('MenuCtrl', function () {
|
|
this.awesomeThings = [
|
|
'HTML5 Boilerplate',
|
|
'AngularJS',
|
|
'Karma'
|
|
];
|
|
});
|