Skip to content

Commit

Permalink
chore: v0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jessy1092 committed Apr 30, 2016
1 parent 2d27992 commit 946a194
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ It has four color.

## Release Notes

### Version 0.4.4 - 2016/04/30

- Fix React 15 unitless number warning

### Version 0.4.3 - 2016/04/18

- Support React 15.0
Expand Down
14 changes: 7 additions & 7 deletions dst/react-github-fork-ribbon.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ var GitHubForkRibbonWrapper = exports.GitHubForkRibbonWrapper = {
height: '150px',
position: 'absolute',
overflow: 'hidden',
top: '0',
top: 0,
zIndex: '9999',
pointerEvents: 'none'
},
Expand All @@ -306,25 +306,25 @@ var GitHubForkRibbonWrapper = exports.GitHubForkRibbonWrapper = {
},

leftStyle: {
left: '0'
left: 0
},

rightStyle: {
right: '0'
right: 0
},

leftBottomStyle: {
position: 'fixed',
top: 'inherit',
bottom: '0',
left: '0'
bottom: 0,
left: 0
},

rightBottomStyle: {
position: 'fixed',
top: 'inherit',
bottom: '0',
right: '0'
bottom: 0,
right: 0
}
};

Expand Down
2 changes: 1 addition & 1 deletion dst/react-github-fork-ribbon.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-github-fork-ribbon",
"description": "Pure inline style github fork ribbon on React component",
"version": "0.4.3",
"version": "0.4.4",
"keywords": [
"fork",
"GitHub",
Expand Down

0 comments on commit 946a194

Please sign in to comment.