This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/directives/resource-view.html
2015-02-26 17:45:28 -05:00

9 lines
373 B
HTML

<div class="resource-view-element">
<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="getState(resources) == 'ready' ? 'visible' : ''">
<span ng-transclude></span>
</div>
</div>