Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var coursemate = angular.module('coursemate', ["ngRoute"]);
- coursemate.config(function($routeProvider) {
- $routeProvider
- .when("/", {
- templateUrl : "app/components/feed/index.html",
- controller : "chatCtrl"
- })
- .when("database/:req", {
- templateUrl : function ($routeParams) {
- return 'app/database/database.php?req=' + $routeParams.req;
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment