Show a loading spinner while we're waiting for subscription information.

This commit is contained in:
yackob03 2013-10-02 01:03:48 -04:00
parent 755fc168af
commit c7e83c4d41
3 changed files with 11 additions and 1 deletions

View file

@ -1,5 +1,5 @@
<div class="container">
<div class="row">
<div class="row" ng-hide="loading">
<div class="col-md-4" ng-repeat='plan in plans'>
<div class="panel" ng-class="{'panel-success': subscription.plan == plan.stripeId, 'panel-default': subscription.plan != plan.stripeId}">
<div class="panel-heading">
@ -18,4 +18,7 @@
</div>
</div>
</div>
<div class="loading" ng-show="loading">
<div class="spin"></div>
</div>
</div>