summaryrefslogtreecommitdiff
path: root/www/js/MonitorCtrl.js
blob: 2db85aa527a45a8c0d0231851be35f95fa878926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// controller for Monitor View

angular.module('zmApp.controllers').controller('zmApp.MonitorCtrl', function ($scope, ZMDataModel, message,$ionicSideMenuDelegate) {

    $scope.monitors = [];

$scope.openMenu = function () {
    $ionicSideMenuDelegate.toggleLeft();
  }

    console.log("***EVENTS: Waiting for Monitors to load before I proceed");

    $scope.monitors = message;
    // console.log("I GOT " + $scope.monitors);

    console.log("HERE");

    $scope.doRefresh = function () {
        console.log("***Pull to Refresh");
        $scope.monitors = [];

        var refresh = ZMDataModel.getMonitors(1);
        refresh.then(function (data) {
            $scope.monitors = data;
            $scope.$broadcast('scroll.refreshComplete');
        });

    };

});