|
|
3 年之前 | |
|---|---|---|
| .. | ||
| src | 3 年之前 | |
| README.md | 3 年之前 | |
Loading indicator view used in Dashboard.
Owners: Dashboard Code Owners
$ sudo npm install -g grunt-clithis.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));