Fix errors introduced by recent CLs
This commit is contained in:
parent
e0bd3417fc
commit
2f78a4d6ea
3 changed files with 8 additions and 5 deletions
|
@ -359,7 +359,7 @@ function RepoCtrl($scope, Restangular, $routeParams, $rootScope, $location, $tim
|
||||||
|
|
||||||
// Create the new tree.
|
// Create the new tree.
|
||||||
$scope.tree = new ImageHistoryTree(namespace, name, resp.images,
|
$scope.tree = new ImageHistoryTree(namespace, name, resp.images,
|
||||||
$scope.getCommentFirstLine, $scope.getTimeSince);
|
getFirstTextLine, $scope.getTimeSince);
|
||||||
|
|
||||||
$scope.tree.draw('image-history-container');
|
$scope.tree.draw('image-history-container');
|
||||||
|
|
||||||
|
|
2
static/lib/angular-strap.min.js
vendored
2
static/lib/angular-strap.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -138,15 +138,18 @@
|
||||||
<div class="changes-container small-changes-container"
|
<div class="changes-container small-changes-container"
|
||||||
ng-show="currentImageChanges.changed.length || currentImageChanges.added.length || currentImageChanges.removed.length">
|
ng-show="currentImageChanges.changed.length || currentImageChanges.added.length || currentImageChanges.removed.length">
|
||||||
<div class="changes-count-container accordion-toggle" data-toggle="collapse" data-parent="#accordion" data-target="#collapseChanges">
|
<div class="changes-count-container accordion-toggle" data-toggle="collapse" data-parent="#accordion" data-target="#collapseChanges">
|
||||||
<span class="change-count added" ng-show="currentImageChanges.added.length > 0" title="Files Added" bs-tooltip="tooltip.title" data-placement="bottom">
|
<span class="change-count added" ng-show="currentImageChanges.added.length > 0" title="Files Added"
|
||||||
|
bs-tooltip="tooltip.title" data-placement="top">
|
||||||
<i class="fa fa-plus-square"></i>
|
<i class="fa fa-plus-square"></i>
|
||||||
<b>{{currentImageChanges.added.length}}</b>
|
<b>{{currentImageChanges.added.length}}</b>
|
||||||
</span>
|
</span>
|
||||||
<span class="change-count removed" ng-show="currentImageChanges.removed.length > 0" title="Files Removed" bs-tooltip="tooltip.title" data-placement="bottom">
|
<span class="change-count removed" ng-show="currentImageChanges.removed.length > 0" title="Files Removed"
|
||||||
|
bs-tooltip="tooltip.title" data-placement="top">
|
||||||
<i class="fa fa-minus-square"></i>
|
<i class="fa fa-minus-square"></i>
|
||||||
<b>{{currentImageChanges.removed.length}}</b>
|
<b>{{currentImageChanges.removed.length}}</b>
|
||||||
</span>
|
</span>
|
||||||
<span class="change-count changed" ng-show="currentImageChanges.changed.length > 0" title="Files Changed" bs-tooltip="tooltip.title" data-placement="bottom">
|
<span class="change-count changed" ng-show="currentImageChanges.changed.length > 0" title="Files Changed"
|
||||||
|
bs-tooltip="tooltip.title" data-placement="top">
|
||||||
<i class="fa fa-pencil-square"></i>
|
<i class="fa fa-pencil-square"></i>
|
||||||
<b>{{currentImageChanges.changed.length}}</b>
|
<b>{{currentImageChanges.changed.length}}</b>
|
||||||
</span>
|
</span>
|
||||||
|
|
Reference in a new issue