(message='')
| 6 | |
| 7 | export class LoadingIndicator{ |
| 8 | static show(message=''){ |
| 9 | var html = Templates.get('loadingIndicator'); |
| 10 | |
| 11 | var g = d3.select('body').selectOrAppend('div.sd-loading-indicator-container').html(html).select('.sd-loading-indicator').classed('visible', true).style('display', 'block') |
| 12 | } |
| 13 | |
| 14 | static hide(){ |
| 15 | let select = d3.select('.sd-loading-indicator'); |
no test coverage detected