var voteApp = angular.module('VoteApp', [
'ngRoute',
'students'
]);
voteApp.config(function($routeProvider){
$routeProvider.when('/', {
templateUrl : 'index.html',
controller : 'MainController'
});
});
voteApp.controller('MainController',['$scope',function($scope){
}]);
On loading, the whole page will crash!
Can anyone help me with this?