diff options
| author | Arjun Roychowdhury <pliablepixels@gmail.com> | 2015-11-05 15:41:44 -0500 |
|---|---|---|
| committer | Arjun Roychowdhury <pliablepixels@gmail.com> | 2015-11-05 15:41:44 -0500 |
| commit | 2ac2150dc0fa6733082babc6971383b35835971f (patch) | |
| tree | 72ce96bf46a4d84f986b0a66ccd97f591bf7ebf0 /www/js/EventCtrl.js | |
| parent | 2b51690e5a5dec4d1925ca3090ad75e00991443b (diff) | |
swipe fixes
Diffstat (limited to 'www/js/EventCtrl.js')
| -rw-r--r-- | www/js/EventCtrl.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/www/js/EventCtrl.js b/www/js/EventCtrl.js index 42c96118..71bf6b27 100644 --- a/www/js/EventCtrl.js +++ b/www/js/EventCtrl.js @@ -1247,8 +1247,9 @@ angular.module('zmApp.controllers') //Navigate to next/prev event in full screen mode //-------------------------------------------------------- - $scope.onSwipe = function(eid,dirn) + $scope.onSwipeEvent = function(eid,dirn) { + console.log ("HERE"); var ld = ZMDataModel.getLogin(); if (!ld.canSwipeMonitors) return; @@ -1258,7 +1259,7 @@ angular.module('zmApp.controllers') console.log("Image is zoomed in - not honoring swipe"); return; } - + console.log ("JUMPING"); jumpToEvent(eid,dirn); }; |
