diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2020-09-11 07:28:17 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2020-09-11 07:28:17 -0400 |
| commit | 0e6a92ebb035a671117fb99fa75b76d3fa373c71 (patch) | |
| tree | f805ea4d69bf4d1166e63d7a64de9814211a026e | |
| parent | c834e8849ffca20206bfe386e9a913c3066bfb46 (diff) | |
#973 don't redraw rows by removing list, kicks in isNative error
| -rw-r--r-- | www/js/EventCtrl.js | 7 |
1 files 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);*/ }); |
