summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/js/app.js12
-rwxr-xr-xclient/partials/home/home.html12
2 files changed, 14 insertions, 10 deletions
diff --git a/client/js/app.js b/client/js/app.js
index 4ef35b5..1f889a0 100644
--- a/client/js/app.js
+++ b/client/js/app.js
@@ -13,16 +13,16 @@ mainApp.config(['$routeProvider', function($routeProvider){
$routeProvider.
when('/home',{
- templateUrl: 'partials/home/home.html',
- controller: 'homeCtrl'
+ templateUrl: 'partials/home/home.html'
+ //controller: 'homeCtrl'
}).
when('/network',{
- templateUrl: 'partials/network/network.html',
- controller: 'networkCtrl'
+ templateUrl: 'partials/network/network.html'
+ //controller: 'networkCtrl'
}).
when('/image',{
- templateUrl: 'partials/image/image.html',
- controller: 'imageCtrl'
+ templateUrl: 'partials/image/image.html'
+ //controller: 'imageCtrl'
})
.otherwise({
redirectTo: '/home'
diff --git a/client/partials/home/home.html b/client/partials/home/home.html
index 8956e86..e724388 100755
--- a/client/partials/home/home.html
+++ b/client/partials/home/home.html
@@ -3,9 +3,13 @@
Home
</div>
<div class="panel-body">
-
- <div id="graphHolder"></div>
- Selectionner une machine:
- <div ng-repeat="machine in machines"> <a ng-click="raiseShowMachineDetailsEvent(machine.id)"> {{ machine.name }}</a></div>
+ <div class="container-lg">
+ <!-- Status bar -->
+ <div class="row">
+ <div class="col-md-12">
+ <div id="graphHolder"></div>
+ </div>
+ </div>
+ </div>
</div>
</div>