se-hub/templates/js/controllers/newCourseController.js

9 lines
355 B
JavaScript
Raw Normal View History

angular.module('SeHub')
2015-06-27 11:52:49 +00:00
.controller('newCourseController', ['$scope', '$cookies', '$cookieStore', '$window', '$location', '$mdToast', '$mdDialog', 'apiService', '$rootScope',
function ($scope, $cookies, $cookieStore, $window, $location, $mdToast, $mdDialog, apiService ,$rootScope)
{
$scope.goBack = function()
{
2015-06-27 11:52:49 +00:00
$location.path('/myClasses');
}
}]);