UNPKG

replay-table

Version:

Visualize sport seasons with interactive standings

15 lines (12 loc) 414 B
export default class { constructor (selector, roundMeta, next) { this.button = selector.append('div') .attr('class', 'next') .classed('disabled', roundMeta.isLast) .on('click', next); this.onRoundChange = this.onRoundChange.bind(this); } onRoundChange (roundMeta) { this.button.classed('disabled', roundMeta.isLast); } };