380228947b
- Create class bug - fixed - Work in progress (classes, projects) - need to check API
16 lines
No EOL
499 B
JavaScript
16 lines
No EOL
499 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(name)
|
|
{
|
|
var taskName = name;
|
|
console.log("task created! " + taskName);
|
|
$location.path("/tasks/new"); // Reference to 'newTask' page
|
|
}
|
|
|
|
|
|
|
|
|
|
}]); |