Semaphore/public/js/controllers/dashboard.js

9 lines
176 B
JavaScript
Raw Normal View History

define(function () {
app.registerController('DashboardCtrl', function ($scope, $http) {
$scope.projects = [{
name: 'Hey there'
}, {
name: 'Test project'
}];
})
})