Fix bug in tour with chromify

This commit is contained in:
Joseph Schorr 2014-05-07 13:37:13 -04:00
parent 92fb37528f
commit d9ca1a4fd9

View file

@ -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) {