|
2 سال پیش | |
---|---|---|
.. | ||
src | 2 سال پیش | |
README.md | 2 سال پیش |
Loading indicator view used in Dashboard.
Owners: Dashboard Code Owners
$ sudo npm install -g grunt-cli
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));