summaryrefslogtreecommitdiff
path: root/client/js/app.js
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2016-02-03 18:57:20 +0100
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2016-02-03 18:57:20 +0100
commitc6186b71c12dece6878ca457afa801f2a79bac0b (patch)
tree00ab4fb45532a98919c0af09a53904c0450c41e0 /client/js/app.js
parentfe06bd586aa2af6ea6bfc426caadee429d100380 (diff)
Change folder architecture !
Diffstat (limited to 'client/js/app.js')
-rw-r--r--client/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/js/app.js b/client/js/app.js
index c931d7e..0e9c423 100644
--- a/client/js/app.js
+++ b/client/js/app.js
@@ -6,11 +6,11 @@ var mainApp=angular.module("mainApp",['ngRoute', 'ngSanitize']);
mainApp.config(['$routeProvider', function($routeProvider){
$routeProvider.
when('/home',{
- templateUrl: 'partials/home.html',
+ templateUrl: 'partials/home/main.html',
controller: 'homeCtrl'
}).
when('/network',{
- templateUrl: 'partials/network.html',
+ templateUrl: 'partials/network/main.html',
controller: 'networkCtrl'
}).otherwise({
redirectTo: '/home'