# loading-indicator Loading indicator view used in Dashboard. Owners: [Dashboard Code Owners](https://github.ibm.com/orgs/BusinessAnalytics/teams/dashboard-code-owners) ## Quality Report [![Build Status](https://hyc-ca-ui-jenkins.swg-devops.com/job/loading-indicator/badge/icon)](https://hyc-ca-ui-jenkins.swg-devops.com/job/loading-indicator/) ## Requirements - Node 8.x with NPM 6.x - A global install of grunt - `$ sudo npm install -g grunt-cli` ## Example usage ```js this.loadingIndicator = new LoadingIndicatorView(); this.loadingIndicator.render() .then(function($el) { var $loading = $('.loading'); $loading.html($el); this.doOperation() .then(function(data) { $loading.hide(); $('.data').html(data); }) }.bind(this)); ```