diff options
| author | pliablepixels <pliablepixels@gmail.com> | 2016-04-24 09:46:13 -0400 |
|---|---|---|
| committer | pliablepixels <pliablepixels@gmail.com> | 2016-04-24 09:46:13 -0400 |
| commit | e7f2da043d19c1adb5d389c383dc8b1779ed0227 (patch) | |
| tree | 616d39cc187d22408d7f95f55a8bedca95edf797 /www/templates | |
| parent | cc97290133abd5a6b141f4ea526bdf0bf261076c (diff) | |
#233 -initial framework - nothing is working yet
Former-commit-id: e7af4a4bde04c6df580f749a23953d0facab34fc
Diffstat (limited to 'www/templates')
| -rw-r--r-- | www/templates/events-modalgraph.html | 10 | ||||
| -rw-r--r-- | www/templates/events-popover.html | 4 | ||||
| -rw-r--r-- | www/templates/events.html | 4 |
3 files changed, 16 insertions, 2 deletions
diff --git a/www/templates/events-modalgraph.html b/www/templates/events-modalgraph.html new file mode 100644 index 00000000..8b718a5e --- /dev/null +++ b/www/templates/events-modalgraph.html @@ -0,0 +1,10 @@ +<div ng-controller="EventsModalGraphCtrl"> + +<ion-modal-view cache-view="false" style="width:80%;height:80%; top: 10%; left: 10%; right: 10%; bottom: 10%;" > + <ion-content ng-cloak on-double-tap="closeModal()" delegate-handle="eventgraph-modal-delegate"> + <div data-tap-disabled="true"> + <canvas id="eventchart" width="auto" height="70%"></canvas> + </div> + </ion-content> + </ion-modal-view> +</div> diff --git a/www/templates/events-popover.html b/www/templates/events-popover.html index f189478e..866b4516 100644 --- a/www/templates/events-popover.html +++ b/www/templates/events-popover.html @@ -3,9 +3,9 @@ <div class="list" ng-click="popover.hide()"> <a class="item" ng-href="" ng-click="popover.hide();$state.go('events-date-time-filter');">Filter by Date/Time</a> - <a class="item" ng-href="" ng-click=" popover.hide();$state.go('events-graphs');" > + <!-- <a class="item" ng-href="" ng-click=" popover.hide();$state.go('events-graphs');" > Event Graphs - </a> + </a>--> <a class="item" ng-href="" ng-click="popover.hide();doRefresh();"> Refresh </a> diff --git a/www/templates/events.html b/www/templates/events.html index cda5ce57..1a324d0d 100644 --- a/www/templates/events.html +++ b/www/templates/events.html @@ -13,6 +13,10 @@ <ion-nav-buttons side="right"> <a style="" class="button button-icon icon ion-android-more-vertical" ng-click="popover.show($event)" ;> </a> + + <!-- FIXME: temporarily disabled will enable once its all working --> + <!-- + <a style="" class="button button-icon icon ion-stats-bars" ng-click="modalGraph()" ;> </a>--> <a style="" class="button button-icon icon ion-search" ng-href="" ng-click="searchClicked();"> </a> </ion-nav-buttons> |
