Skip to content

Commit

Permalink
#354 removed debugs
Browse files Browse the repository at this point in the history
Former-commit-id: d401ddff835299231a89af31dbb91e166c9f1263
  • Loading branch information
pliablepixels committed Oct 23, 2016
1 parent fe65452 commit fe082f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions www/js/EventModalCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -543,15 +543,15 @@ angular.module('zmApp.controllers').controller('EventModalCtrl', ['$scope', '$ro
id: event.Frame[i-1].FrameId,
img: fname,
});
console.log ("ALARM PUSHED " + fname);
//console.log ("ALARM PUSHED " + fname);
}
} else // push all frames
{
$scope.slides.push({
id: event.Frame[i-1].FrameId,
img: fname,
});
console.log ("PUSHED " + fname);
//console.log ("PUSHED " + fname);
}

}
Expand Down Expand Up @@ -605,11 +605,11 @@ angular.module('zmApp.controllers').controller('EventModalCtrl', ['$scope', '$ro
$scope.slideIndex = $scope.mycarousel.index;
$scope.slideLastIndex = $scope.slides.length - 1;

console.log ("URL TO DISPLAY " + url);
// console.log ("URL TO DISPLAY " + url);


$rootScope.zmPopup = $ionicPopup.show({
template: '<center>Frame: {{slideIndex+1}} / {{slideLastIndex+1}}</center><br/><img src="{{selectEventUrl}}" width="100%" /><br/>{{selectEventUrl}}',
template: '<center>Frame: {{slideIndex+1}} / {{slideLastIndex+1}}</center><br/><img src="{{selectEventUrl}}" width="100%" />',
title: 'Select ' + (onlyAlarms ? 'Alarmed ' : '') + 'frame to save',
subTitle: 'use left and right arrows to change',
scope: $scope,
Expand Down

0 comments on commit fe082f3

Please sign in to comment.