summaryrefslogtreecommitdiff
path: root/client/js/app.js
diff options
context:
space:
mode:
authorYoggzo <yogg@epsina.com>2016-03-08 17:30:26 +0100
committerYoggzo <yogg@epsina.com>2016-03-08 17:30:26 +0100
commit89f2c4ac8cd6b0f7766170d588eae2407124f8fc (patch)
tree6275b180b1c1f45caba3e84437119f784f5ebfba /client/js/app.js
parent66baa3ffc8bd119558eeb1e87cb05c6008df9d6f (diff)
parent3b569b6d008d5b1936ee04948cf5c1cc08790f39 (diff)
Merge branch 'develop' into Evan
Diffstat (limited to 'client/js/app.js')
-rw-r--r--client/js/app.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/client/js/app.js b/client/js/app.js
index e2d5b9b..1602e65 100644
--- a/client/js/app.js
+++ b/client/js/app.js
@@ -13,12 +13,16 @@ mainApp.config(['$routeProvider', function($routeProvider){
$routeProvider.
when('/home',{
- templateUrl: 'partials/home/main.html',
+ templateUrl: 'partials/home/home.html',
controller: 'homeCtrl'
}).
when('/network',{
- templateUrl: 'partials/network/main.html',
+ templateUrl: 'partials/network/network.html',
controller: 'networkCtrl'
+ }).
+ when('/image',{
+ templateUrl: 'partials/image/image.html',
+ controller: 'imageCtrl'
}).otherwise({
redirectTo: '/home'
});