2015-06-23 16:40:30 +00:00
|
|
|
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)
|
2015-06-23 16:40:30 +00:00
|
|
|
{
|
|
|
|
$scope.goBack = function()
|
|
|
|
{
|
2015-06-27 11:52:49 +00:00
|
|
|
$location.path('/myClasses');
|
2015-06-23 16:40:30 +00:00
|
|
|
}
|
|
|
|
}]);
|