diff options
| -rw-r--r-- | www/js/TimelineCtrl.js | 1 | ||||
| -rw-r--r-- | www/templates/timeline.html | 8 |
2 files changed, 8 insertions, 1 deletions
diff --git a/www/js/TimelineCtrl.js b/www/js/TimelineCtrl.js index 894ce566..7c762284 100644 --- a/www/js/TimelineCtrl.js +++ b/www/js/TimelineCtrl.js @@ -552,6 +552,7 @@ angular.module('zmApp.controllers').controller('zmApp.TimelineCtrl', ['$ionicPla .then(function (data) { graphIndex = 0; + ZMDataModel.zmLog ("Creating " + $scope.monitors.length + " groups for the graph"); // create groups for (var g = 0; g < $scope.monitors.length; g++) { groups.add({ diff --git a/www/templates/timeline.html b/www/templates/timeline.html index eb73885e..79e7010d 100644 --- a/www/templates/timeline.html +++ b/www/templates/timeline.html @@ -28,7 +28,13 @@ {{prettify(fromDate)}} - {{prettify(toDate)}} (only displaying last {{maxItems}} events) </div> - + <div ng-if="!graphLoaded"> + <br/><br/> + <center> + <p>working on graph data...</p> + </center> + </div> + <div style="padding-left:15px; padding-right:15px;"> <div id="visualization"> |
