Skip to content

Commit

Permalink
removed csv input button #633
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Letter committed Oct 18, 2016
1 parent 43244fb commit c1c3ba0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions web-server/plugins/slycat-timeseries-model/wizard-ui.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ <h3 class="modal-title">New Timeseries Model</h3>

<div class="tab-content">
<div data-bind="visible:tab() == 0">
<!--<div class="radio" style="margin-left: 15px;">-->
<!--<label>-->
<!--<input type="radio" name="timeseries-type-radios" id="csv-radio" value="csv" data-bind="checked: timeseries_type">-->
<!--CSV file format-->
<!--</label>-->
<!--</div>-->
<div class="radio" style="margin-left: 15px;">
<label>
<input type="radio" name="timeseries-type-radios" id="csv-radio" value="csv" data-bind="checked: timeseries_type">
CSV file format
</label>
</div>
<div class="radio" style="margin-left: 15px;">
<label>
<input type="radio" name="timeseries-type-radios" id="xyce-radio" value="xyce" data-bind="checked: timeseries_type">
<input type="radio" name="timeseries-type-radios" id="xyce-radio" value="xyce" checked="checked" data-bind="checked: timeseries_type">
Xyce format
</label>
</div>
Expand Down
2 changes: 1 addition & 1 deletion web-server/plugins/slycat-timeseries-model/wizard-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ define(['slycat-server-root', 'slycat-web-client', 'slycat-dialog', 'slycat-mark
component.tab = ko.observable(0);
component.project = params.projects()[0];
component.model = mapping.fromJS({ _id: null, name: 'New Timeseries Model', description: '', marking: markings.preselected() });
component.timeseries_type = ko.observable('csv');
component.timeseries_type = ko.observable('xyce');
component.remote = mapping.fromJS({hostname: null, username: null, password: null, status: null, status_type: null, enable: true, focus: false, sid: null, session_exists: false});
component.remote.focus.extend({notify: 'always'});
component.browser = mapping.fromJS({path:null, selection: []});
Expand Down

0 comments on commit c1c3ba0

Please sign in to comment.