From bcd8a48159cad3a43b028411a5d6757fa62c1e4c Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Thu, 2 Apr 2015 11:37:30 -0400 Subject: [PATCH] Make sure to redraw the tree in the old repo view. Patches an issue where the tree won't show up sometimes --- static/js/pages/repo-view.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/js/pages/repo-view.js b/static/js/pages/repo-view.js index 707784fe6..5e9d631f7 100644 --- a/static/js/pages/repo-view.js +++ b/static/js/pages/repo-view.js @@ -645,6 +645,10 @@ $scope.setImage($routeParams.image); } + $timeout(function() { + $scope.tree.notifyResized(); + }, 100); + return resp.images; }); };