From 0e6a92ebb035a671117fb99fa75b76d3fa373c71 Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Fri, 11 Sep 2020 07:28:17 -0400 Subject: #973 don't redraw rows by removing list, kicks in isNative error --- www/js/EventCtrl.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/www/js/EventCtrl.js b/www/js/EventCtrl.js index 093beac5..d4338370 100644 --- a/www/js/EventCtrl.js +++ b/www/js/EventCtrl.js @@ -81,10 +81,11 @@ angular.module('zmApp.controllers') $scope.$on('sizechanged', function() { recomputeRowHeights(); recomputeThumbSize(); - $scope.eventsBeingLoaded = true; - $timeout (function() { + $scope.$apply(); + // $scope.eventsBeingLoaded = true; + /* $timeout (function() { $scope.eventsBeingLoaded = false; - },300); + },300);*/ }); -- cgit v1.2.3