Loading Indicator
Basic full loading indicator. The indicator will take up the space of its defined containment area.
Here is some text in the loading containment area.
- HTML
<div class="t-content"> <div class="c-button" ng-click="isLoading = !isLoading;">Click to show loading indication.</div> <div class="c-loadingIndicator-containment" ng-init="isLoading = false;" style="height: 500px; width: 500px; border: 1px solid black;"> <div class="u-m++ u-p++ u-beta">Here is some text in the loading containment area.</div> <inv-loading-indicator is-loading="isLoading"></inv-loading-indicator> </div> </div>