From d9ca1a4fd9d1e009698fad1d2265674b491d2137 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Wed, 7 May 2014 13:37:13 -0400 Subject: [PATCH] Fix bug in tour with chromify --- static/js/app.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/static/js/app.js b/static/js/app.js index 261402139..fbd5a399a 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -1940,11 +1940,9 @@ quayApp.directive('tourContent', function () { }; $scope.$watch('kind', function(kind) { - if (kind) { - $timeout(function() { - $scope.chromify(); - }); - } + $timeout(function() { + $scope.chromify(); + }); }); }, link: function($scope, $element, $attr, ctrl) {