Comment out undone features

pull/10616/head
Andrew Watkins 2017-08-01 13:24:52 -07:00
parent 101e5da0e7
commit 2270604c68
1 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,7 @@
import React, {PropTypes} from 'react'
import _ from 'lodash'
// TODO: add logic for for Prefix, Suffix, Scale, and Multiplier
const Ranger = ({onSetRange, axes}) => {
const min = _.get(axes, ['y', 'bounds', '0'], '')
const max = _.get(axes, ['y', 'bounds', '1'], '')
@ -9,7 +10,7 @@ const Ranger = ({onSetRange, axes}) => {
<div className="display-options--cell">
<h5 className="display-options--header">Y Axis Controls</h5>
<form autoComplete="off" style={{margin: '0 -6px'}}>
<div className="form-group col-sm-3">
{/* <div className="form-group col-sm-3">
<label htmlFor="prefix">Prefix</label>
<input
className="form-control input-sm"
@ -35,7 +36,7 @@ const Ranger = ({onSetRange, axes}) => {
name="suffix"
id="suffix"
/>
</div>
</div> */}
<div className="form-group col-sm-6">
<label htmlFor="min">Min</label>
<input
@ -60,7 +61,7 @@ const Ranger = ({onSetRange, axes}) => {
placeholder="auto"
/>
</div>
<div className="form-group col-sm-6">
{/* <div className="form-group col-sm-6">
<label>Units</label>
<ul className="nav nav-tablist nav-tablist-sm">
<li className="active">Base 10</li>
@ -73,7 +74,7 @@ const Ranger = ({onSetRange, axes}) => {
<li className="active">Linear</li>
<li>Logarithmic</li>
</ul>
</div>
</div> */}
</form>
</div>
)