Skip to main content
summaryrefslogtreecommitdiffstats
blob: d988229c9bb67ee74731ffb2b24da10bcdf78b52 (plain) (blame)
1
2
3
4
5
app.controller("mainController", ["$scope", "$rootScope",
	function($scope, $rootScope) {
		$scope.links = [ { ref: '', name: 'Home'}, { ref: 'user', name: 'User'}, { ref: 'admin', name: 'Admin'}];
		$rootScope.type = "test_script";
	}]);

Back to the top