se-hub/templates/js/controllers/newCourseController.js
2015-06-27 14:52:49 +03:00

9 lines
355 B
JavaScript

angular.module('SeHub')
.controller('newCourseController', ['$scope', '$cookies', '$cookieStore', '$window', '$location', '$mdToast', '$mdDialog', 'apiService', '$rootScope',
function ($scope, $cookies, $cookieStore, $window, $location, $mdToast, $mdDialog, apiService ,$rootScope)
{
$scope.goBack = function()
{
$location.path('/myClasses');
}
}]);