Skip to content

Commit f144ec5

Browse files
committed
change to v0.2.2
1 parent 222acde commit f144ec5

7 files changed

+16
-16
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Installing this component is very easy and it has just one dependency: [React](h
2424
$ bower install --save react-simpletabs
2525
```
2626

27-
- 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!
27+
- 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!
2828

2929
**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`.
3030

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-simpletabs",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"homepage": "https://github.com/pedronauck/react-simpletabs",
55
"authors": [
66
"Pedro Nauck <[email protected]> (https://github.com/pedronauck)"

dist/react-simpletabs.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
*
33
* React Simpletabs - Just a simple tabs component built with React
4-
* @version v0.2.1
4+
* @version v0.2.2
55
* @link https://github.com/pedronauck/react-simpletabs
66
* @license MIT
77
* @author Pedro Nauck (https://github.com/pedronauck)

dist/react-simpletabs.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
*
33
* React Simpletabs - Just a simple tabs component built with React
4-
* @version v0.2.1
4+
* @version v0.2.2
55
* @link https://github.com/pedronauck/react-simpletabs
66
* @license MIT
77
* @author Pedro Nauck (https://github.com/pedronauck)
@@ -95,7 +95,7 @@ return /******/ (function(modules) { // webpackBootstrap
9595
var panelsList = this._getPanels();
9696

9797
return (
98-
React.DOM.div({className: "tabs"},
98+
React.createElement("div", {className: "tabs"},
9999
menuItems,
100100
panelsList
101101
)
@@ -138,15 +138,15 @@ return /******/ (function(modules) { // webpackBootstrap
138138
});
139139

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

147147
return (
148-
React.DOM.nav({className: "tabs-navigation"},
149-
React.DOM.ul({className: "tabs-menu"}, $menuItems)
148+
React.createElement("nav", {className: "tabs-navigation"},
149+
React.createElement("ul", {className: "tabs-menu"}, $menuItems)
150150
)
151151
);
152152
},
@@ -159,12 +159,12 @@ return /******/ (function(modules) { // webpackBootstrap
159159
});
160160

161161
return (
162-
React.DOM.article({ref: ref, key: index, className: classes}, $panel)
162+
React.createElement("article", {ref: ref, key: index, className: classes}, $panel)
163163
);
164164
}.bind(this));
165165

166166
return (
167-
React.DOM.section({className: "tabs-panels"}, $panels)
167+
React.createElement("section", {className: "tabs-panels"}, $panels)
168168
);
169169
}
170170
});
@@ -179,7 +179,7 @@ return /******/ (function(modules) { // webpackBootstrap
179179
]).isRequired
180180
},
181181
render:function () {
182-
return React.DOM.div(null, this.props.children);
182+
return React.createElement("div", null, this.props.children);
183183
}
184184
});
185185

dist/react-simpletabs.min.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
*
33
* React Simpletabs - Just a simple tabs component built with React
4-
* @version v0.2.1
4+
* @version v0.2.2
55
* @link https://github.com/pedronauck/react-simpletabs
66
* @license MIT
77
* @author Pedro Nauck (https://github.com/pedronauck)

dist/react-simpletabs.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-simpletabs",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Just a simple tabs component built with React",
55
"author": {
66
"name": "Pedro Nauck",

0 commit comments

Comments
 (0)