diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2016-02-06 12:10:04 +0100 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2016-02-06 12:10:04 +0100 |
| commit | bd81674a85677378b8a6a167439cac92c807dc23 (patch) | |
| tree | bb74e18411aebdf8cde2c7dd1e5fa35e0ac18c5b /client/js/app.js | |
| parent | e9e7ddf9b11f73e01925541bd6a534d5abaa7548 (diff) | |
Add doc
Diffstat (limited to 'client/js/app.js')
| -rw-r--r-- | client/js/app.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/client/js/app.js b/client/js/app.js index 96997eb..451df66 100644 --- a/client/js/app.js +++ b/client/js/app.js @@ -1,8 +1,13 @@ -// Declare main app +/** + * The main app module instance + * @type angular.module.angular-1_3_6_L1749.moduleInstance + */ var mainApp=angular.module("mainApp",['ngRoute', 'ngSanitize']); - +/** + * Configure the router + */ mainApp.config(['$routeProvider', function($routeProvider){ $routeProvider. when('/home',{ |
