Created
October 9, 2014 06:12
-
-
Save pareshchouhan/2b49d08bc3e444f4ee87 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var bets4you = angular.module('bets4you', ["ngRoute"]); | |
| bets4you.value('appName', 'Bets4You'); | |
| bets4you.config(['$routeProvider', function($routeProvider) { | |
| // Configure existing providers | |
| $routeProvider | |
| .when('/', {templateUrl: 'index.html', | |
| controller : 'NavBarController', | |
| }); | |
| }]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment