Skip to content

Commit

Permalink
Restore root and remove missing console log
Browse files Browse the repository at this point in the history
  • Loading branch information
javivelasco committed Nov 11, 2015
1 parent 5fc1359 commit 0dd4bb6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
1 change: 0 additions & 1 deletion components/slider/index.jsx
Expand Up @@ -229,7 +229,6 @@ class Slider extends React.Component {
if (this.props.editable) className += ` ${style.editable}`;
if (this.props.pinned) className += ` ${style.pinned}`;
if (this.state.pressed) className += ` ${style.pressed}`;
console.log(this.props.value, this.props.min);
if (this.props.value === this.props.min) className += ` ${style.ring}`;

return (
Expand Down
21 changes: 21 additions & 0 deletions spec/root.jsx
Expand Up @@ -45,6 +45,27 @@ const Root = () => (
/>
</AppBarToolbox>

<Autocomplete />
<Button />
<Card />
<Checkbox />
<Dialog />
<Drawer />
<Dropdown />
<IconMenu />
<Input />
<List />
<Menu />
<Pickers />
<Progress />
<Radio />
<Slider />
<Snackbar />
<Switch />
<Table />
<Tabs />
<Tooltip />

<Pickers />
</App>
);
Expand Down

0 comments on commit 0dd4bb6

Please sign in to comment.