Skip to content

Commit

Permalink
#202 - swipe enabled on all screens EXCEPT: Timeline and full screen …
Browse files Browse the repository at this point in the history
…live view and event footage
  • Loading branch information
pliablepixels committed Mar 18, 2016
1 parent d071c86 commit dcbd9f4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion www/js/EventCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ angular.module('zmApp.controllers')
$scope.currentEvent = "";
$scope.event = event;
//$ionicScrollDelegate.freezeScroll(true);
$ionicSideMenuDelegate.canDragContent(false);
$ionicSideMenuDelegate.canDragContent(true);
$scope.slider_options = {
from: 1,
to: event.Event.Frames,
Expand Down
1 change: 1 addition & 0 deletions www/js/MonitorCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ angular.module('zmApp.controllers')
$scope.$on('$ionicView.enter', function () {
// console.log("**VIEW ** Monitor Ctrl Entered");
ZMDataModel.setAwake(false);
$ionicSideMenuDelegate.canDragContent(true);
});

$scope.$on('$ionicView.leave', function () {
Expand Down
2 changes: 1 addition & 1 deletion www/js/MontageCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ angular.module('zmApp.controllers').controller('zmApp.MontageCtrl', ['$scope', '
var modalIntervalHandle;


$ionicSideMenuDelegate.canDragContent($scope.minimal? true: false);
$ionicSideMenuDelegate.canDragContent($scope.minimal? true: true);


$rootScope.authSession = "undefined";
Expand Down
2 changes: 1 addition & 1 deletion www/js/MontageHistoryCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ angular.module('zmApp.controllers').controller('zmApp.MontageHistoryCtrl', ['$sc
var sizeInProgress = false;
$scope.imageStyle = true;

$ionicSideMenuDelegate.canDragContent(false);
$ionicSideMenuDelegate.canDragContent(true);



Expand Down
2 changes: 1 addition & 1 deletion www/js/PortalLoginCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ angular.module('zmApp.controllers').controller('zmApp.PortalLoginCtrl', ['$ionic
// console.log("************* ENTERING PORTAL MAIN ");
ZMDataModel.zmLog ("Entering Portal Main");
var loginData;
$ionicSideMenuDelegate.canDragContent(false);
$ionicSideMenuDelegate.canDragContent(true);



Expand Down

0 comments on commit dcbd9f4

Please sign in to comment.