Start on the new build view
This commit is contained in:
parent
5cc1c90021
commit
e227d7e526
30 changed files with 816 additions and 11 deletions
|
@ -1,9 +1,9 @@
|
|||
<div class="resource-view-element">
|
||||
<div class="quay-spinner" ng-show="resource.loading"></div>
|
||||
<div class="resource-error" ng-show="!resource.loading && resource.hasError">
|
||||
<div class="cor-loader" ng-show="getState(resources) == 'loading'"></div>
|
||||
<div class="resource-error alert alert-info" ng-show="getState(resources) == 'error'">
|
||||
{{ errorMessage }}
|
||||
</div>
|
||||
<div class="resource-content" ng-class="(!resource.loading && !resource.hasError) ? 'visible' : ''">
|
||||
<div class="resource-content" ng-class="getState(resources) == 'ready' ? 'visible' : ''">
|
||||
<span ng-transclude></span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Reference in a new issue