diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-21 20:34:42 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-21 20:34:42 +0200 |
| commit | af3bed7b5b1b01531e3bb34c56612c37717e06b7 (patch) | |
| tree | 8e520aa3936a0296041d246bf8cf9a7e8645dc9f /public/bundle.js | |
| parent | 413dece08acb8d168835b0642bf1bccf85506c95 (diff) | |
pauzejabber
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' ) ) |
