Skip to content

Commit

Permalink
#45: Added loading... message when profile table data is being loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
davsclaus committed Apr 9, 2013
1 parent b9f9f68 commit d1209ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion hawtio-web/src/main/webapp/app/camel/html/profileRoute.html
Expand Up @@ -12,9 +12,12 @@
</div>
</div>

<div class="row-fluid">
<div class="row-fluid" ng-show="data.length > 0">
<div class="gridStyle" ng-grid="gridOptions"></div>
</div>
<div class="row-fluid" ng-show="data.length == 0">
Loading...
</div>

</div>

1 change: 0 additions & 1 deletion hawtio-web/src/main/webapp/app/camel/js/profile.ts
Expand Up @@ -251,7 +251,6 @@ module Camel {
}

// schedule update the profile data, based on the configured interval
// TODO: trigger loading data first time page is viewed so we dont have to wait or show a loading... page
// TODO: show eips in the table/tree, and use the position from this tree to position the data
// TODO: have cellFilter with bar grey-scale for highlighting the scales between the numbers

Expand Down

0 comments on commit d1209ef

Please sign in to comment.