Fix bug in tour with chromify
This commit is contained in:
parent
92fb37528f
commit
d9ca1a4fd9
1 changed files with 3 additions and 5 deletions
|
@ -1940,11 +1940,9 @@ quayApp.directive('tourContent', function () {
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.$watch('kind', function(kind) {
|
$scope.$watch('kind', function(kind) {
|
||||||
if (kind) {
|
$timeout(function() {
|
||||||
$timeout(function() {
|
$scope.chromify();
|
||||||
$scope.chromify();
|
});
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
link: function($scope, $element, $attr, ctrl) {
|
link: function($scope, $element, $attr, ctrl) {
|
||||||
|
|
Reference in a new issue