Skip to content

Commit

Permalink
change to v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Jan 28, 2015
1 parent 222acde commit f144ec5
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Installing this component is very easy and it has just one dependency: [React](h
$ bower install --save react-simpletabs
```

- Or if you want to [download the lastest release](https://github.com/pedronauck/react-simpletabs/archive/v0.2.1.zip) and put in your website, it will work too!
- Or if you want to [download the lastest release](https://github.com/pedronauck/react-simpletabs/archive/v0.2.2.zip) and put in your website, it will work too!

**NOTICE:** You need just one thing to make the component work. Put the [base component style](./dist/react-simpletabs.css) at the `<header>` tag. If you don't wanna use the `.css` extension, you can get the `.styl` or `.scss` extension at the folder `./lib`.

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-simpletabs",
"version": "0.2.1",
"version": "0.2.2",
"homepage": "https://github.com/pedronauck/react-simpletabs",
"authors": [
"Pedro Nauck <pedronauck@gmail.com> (https://github.com/pedronauck)"
Expand Down
2 changes: 1 addition & 1 deletion dist/react-simpletabs.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
*
* React Simpletabs - Just a simple tabs component built with React
* @version v0.2.1
* @version v0.2.2
* @link https://github.com/pedronauck/react-simpletabs
* @license MIT
* @author Pedro Nauck (https://github.com/pedronauck)
Expand Down
18 changes: 9 additions & 9 deletions dist/react-simpletabs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
*
* React Simpletabs - Just a simple tabs component built with React
* @version v0.2.1
* @version v0.2.2
* @link https://github.com/pedronauck/react-simpletabs
* @license MIT
* @author Pedro Nauck (https://github.com/pedronauck)
Expand Down Expand Up @@ -95,7 +95,7 @@ return /******/ (function(modules) { // webpackBootstrap
var panelsList = this._getPanels();

return (
React.DOM.div({className: "tabs"},
React.createElement("div", {className: "tabs"},
menuItems,
panelsList
)
Expand Down Expand Up @@ -138,15 +138,15 @@ return /******/ (function(modules) { // webpackBootstrap
});

return (
React.DOM.li({ref: ref, key: index, className: classes},
React.DOM.a({href: "#", 'data-tab-id': index + 1, onClick: this.setActive}, title)
React.createElement("li", {ref: ref, key: index, className: classes},
React.createElement("a", {href: "#", "data-tab-id": index + 1, onClick: this.setActive}, title)
)
);
}.bind(this));

return (
React.DOM.nav({className: "tabs-navigation"},
React.DOM.ul({className: "tabs-menu"}, $menuItems)
React.createElement("nav", {className: "tabs-navigation"},
React.createElement("ul", {className: "tabs-menu"}, $menuItems)
)
);
},
Expand All @@ -159,12 +159,12 @@ return /******/ (function(modules) { // webpackBootstrap
});

return (
React.DOM.article({ref: ref, key: index, className: classes}, $panel)
React.createElement("article", {ref: ref, key: index, className: classes}, $panel)
);
}.bind(this));

return (
React.DOM.section({className: "tabs-panels"}, $panels)
React.createElement("section", {className: "tabs-panels"}, $panels)
);
}
});
Expand All @@ -179,7 +179,7 @@ return /******/ (function(modules) { // webpackBootstrap
]).isRequired
},
render:function () {
return React.DOM.div(null, this.props.children);
return React.createElement("div", null, this.props.children);
}
});

Expand Down
2 changes: 1 addition & 1 deletion dist/react-simpletabs.min.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
*
* React Simpletabs - Just a simple tabs component built with React
* @version v0.2.1
* @version v0.2.2
* @link https://github.com/pedronauck/react-simpletabs
* @license MIT
* @author Pedro Nauck (https://github.com/pedronauck)
Expand Down
4 changes: 2 additions & 2 deletions dist/react-simpletabs.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,6 +1,6 @@
{
"name": "react-simpletabs",
"version": "0.2.1",
"version": "0.2.2",
"description": "Just a simple tabs component built with React",
"author": {
"name": "Pedro Nauck",
Expand Down

0 comments on commit f144ec5

Please sign in to comment.