21 lines
584 B
JavaScript
21 lines
584 B
JavaScript
var app = angular.module('memberApp', ['ngRoute']);
|
|
|
|
app.config(['$routeProvider', function($routeProvider){
|
|
$routeProvider
|
|
.when('/',{
|
|
templateUrl:"/static/html/jasenlista.html",
|
|
controller:'getController',
|
|
})
|
|
.when('/list',{
|
|
templateUrl:"/static/html/jasenlista.html",
|
|
controller:'getController',
|
|
})
|
|
.when('/add',{
|
|
templateUrl:"/static/html/lisaa_jasen.html",
|
|
controller:'postController',
|
|
})
|
|
.otherwise({
|
|
'redirectTo':"/"
|
|
})
|
|
}]);
|