Created
October 8, 2014 12:18
-
-
Save pareshchouhan/a6f46f5885cbf1ddd358 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', []); | |
| bets4you.value('appName', 'Bets4You'); | |
| bets4you.config(['$routeProvider', function($routeProvider) { | |
| // Configure existing providers | |
| $routeProvider | |
| .when('/', {templateUrl: 'partials/home.html', | |
| controller: 'HomePageCtrl' | |
| }); | |
| }]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment