|  | 3 vuotta sitten | |
|---|---|---|
| .. | ||
| src | 3 vuotta sitten | |
| README.md | 3 vuotta sitten | |
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));