Skip to content

Commit

Permalink
delay tag item showing until its manifest received (#137)
Browse files Browse the repository at this point in the history
For a tag item, there exists a time interval between receiving its name and its manifest.
That will result in some jitter when loading.

Signed-off-by: lijun <lijun@qiyi.com>
  • Loading branch information
xiaodot authored and kwk committed Jul 20, 2016
1 parent 48ae06e commit c34f619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/tag/tag-list-directive.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</tr>
</thead>
<tbody>
<tr ng-repeat="tag in displayedTags | filter:search ">
<tr ng-repeat="tag in displayedTags | filter:search " ng-show="tag.details">
<td>
<a ng-bind-html="tag.name" href="tag/{{repositoryUser}}/{{repositoryName}}/{{tag.name}}">{{tag.name}}</a>
</td>
Expand Down

0 comments on commit c34f619

Please sign in to comment.