Skip to content

Commit

Permalink
fix(styleguide): Remove extraneous divs from styleguide
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Meskers <pmeskers@pivotal.io>
  • Loading branch information
bebepeng committed Jan 8, 2015
1 parent edf2a18 commit bab65af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
4 changes: 1 addition & 3 deletions src/pivotal-ui/components/images.scss
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,7 @@ Images in react can be responsive and/or wrapped in a link.
```jsx_example
React.render(
<div>
<UI.Image src="http://placehold.it/1000x100" responsive="true" href="http://google.com" />
</div>,
<UI.Image src="http://placehold.it/1000x100" responsive="true" href="http://google.com" />,
document.getElementById('image-example')
);
```
Expand Down
8 changes: 2 additions & 6 deletions src/pivotal-ui/components/ribbons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -163,16 +163,12 @@ parent: ribbons_react
```jsx_example
React.render(
<div>
<UI.InlineRibbon> British </UI.InlineRibbon>
</div>,
<UI.InlineRibbon> British </UI.InlineRibbon>,
document.getElementById('Inline-ribbon-example')
);
React.render(
<div>
<UI.InlineRibbon primary> English-British </UI.InlineRibbon>
</div>,
<UI.InlineRibbon primary> English-British </UI.InlineRibbon>,
document.getElementById('Inline-ribbon-primary-example')
);
```
Expand Down

0 comments on commit bab65af

Please sign in to comment.