Files
web2.0-backend/members/static/js/members_routers.js
T
2016-08-01 20:40:20 +03:00

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':"/"
})
}]);