diff options
Diffstat (limited to 'public/bundle.js')
| -rw-r--r-- | public/bundle.js | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/public/bundle.js b/public/bundle.js index 16b3832..46bca20 100644 --- a/public/bundle.js +++ b/public/bundle.js @@ -910,6 +910,12 @@ var App = function (_Component) { options: ['a', 'b', 'sequence', 'recursive'] }), (0, _preact.h)(_select2.default, { + name: 'sequence_name', + title: 'sequence', + options: this.props.sequences, + onChange: this.changeSequence + }), + (0, _preact.h)(_select2.default, { name: 'checkpoint_name', title: 'checkpoint', options: this.props.checkpoints, @@ -921,12 +927,6 @@ var App = function (_Component) { options: this.props.epochs, onChange: this.changeEpoch }), - (0, _preact.h)(_select2.default, { - name: 'sequence_name', - title: 'sequence', - options: this.props.sequences, - onChange: this.changeSequence - }), (0, _preact.h)(_slider2.default, { name: 'position', min: 0.0, max: 1.0, type: 'float', @@ -934,14 +934,11 @@ var App = function (_Component) { onChange: this.seek }), (0, _preact.h)( - 'div', - null, - 'Processing: ', - this.props.opt.processing - ), - (0, _preact.h)( _button2.default, - { onClick: this.toggle }, + { + title: 'Processing: ' + (this.props.opt.processing ? 'yes' : 'no'), + onClick: this.toggle + }, this.props.opt.processing ? 'Pause' : 'Restart' ) ) |
