c154b37973
- task page - improvements for layout (api func under progress) - campuses (loading circle - under progress)
14 lines
No EOL
428 B
JavaScript
14 lines
No EOL
428 B
JavaScript
angular.module('SeHub')
|
|
.controller('tasksController', ['$scope', '$cookies', '$cookieStore', '$window', '$location', '$mdToast', '$mdDialog', 'apiService', '$rootScope', function ($scope, $cookies, $cookieStore, $window, $location, $mdToast, $mdDialog, apiService ,$rootScope)
|
|
{
|
|
console.log("in controller");
|
|
|
|
$scope.createTaskClicked = function()
|
|
{
|
|
$location.path("/tasks/new"); // Reference to 'newTask' page
|
|
}
|
|
|
|
|
|
|
|
|
|
}]); |