Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
HAWKULAR-661 - Spinner loading
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkrohling committed Oct 8, 2015
1 parent 348721c commit c41bc03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<div class="row">
<div class="col-md-12" ng-controller="HawkularAccounts.OrganizationMembershipController as controller">
<ol class="breadcrumb">
<ol class="breadcrumb" ng-show="!controller.loading">
<li><a data-ng-href="/hawkular-ui/organizations">&laquo; All organizations</a></li>
</ol>

<h1 class="text-center">{{controller.organization.name}} Members</h1>
<h1 class="text-center" ng-show="!controller.loading">{{controller.organization.name}} Members</h1>

<div class="text-right" ng-show="controller.memberships.length && !controller.loading && controller.foundOrganization">
<button
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="hk-organizations" ng-controller="HawkularAccounts.OrganizationsController">

<h1 class="text-center">Organizations</h1>
<h1 class="text-center" ng-show="!loading">Organizations</h1>

<div class="text-center hk-spinner-container-alone" ng-show="loading">
<div class="spinner spinner-lg"></div>
Expand Down Expand Up @@ -62,4 +62,4 @@ <h1>No organizations inside organization.</h1>
</div>
<!-- /col -->

</div>
</div>

0 comments on commit c41bc03

Please sign in to comment.