diff --git a/ui/index.jsp b/ui/index.jsp index 16a37eab704..f9fc500229d 100644 --- a/ui/index.jsp +++ b/ui/index.jsp @@ -885,15 +885,11 @@
@@ -904,49 +900,49 @@
Public IP Addresses
- Allocated: 35 / 100 + Allocated: 0 / 0
-
+
-
35%
+
0%
  • Private IP Addresses
    - Allocated: 15 / 100 + Allocated: 0 / 0
    -
    +
    -
    15%
    +
    0%
  • Memory Allocated
    - Allocated: 23mb / 100mb + Allocated: 0mb / 0mb
    -
    +
    -
    23%
    +
    0%
  • CPU Allocated
    - Allocated: 75 / 100 + Allocated: 0 / 0
    -
    +
    -
    75%
    +
    0%
  • @@ -961,26 +957,26 @@ @@ -995,26 +991,26 @@ diff --git a/ui/scripts/dashboard.js b/ui/scripts/dashboard.js index 77231fb070c..5b7a2b28f75 100644 --- a/ui/scripts/dashboard.js +++ b/ui/scripts/dashboard.js @@ -3,7 +3,13 @@ cloudStack.sections.dashboard = { title: 'Dashboard', show: function() { - return $('#template').find('div.dashboard.admin').clone(); + var $dashboard = $('#template').find('div.dashboard.admin').clone(); + + $dashboard.find('.view-all').click(function() { + $('#navigation li.events').click(); + }); + + return $dashboard; } };