Skip to content

Commit

Permalink
add display name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ola Holmström committed Oct 28, 2015
1 parent f5a08a0 commit 6ea8328
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
### 2.0.1 (2015-10-28)

* Add dipslay name.

### 2.0.0 (2015-10-13)

* Update to use React 0.14 by default.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -4,7 +4,7 @@
"react-tagsinput.js",
"react-tagsinput.css"
],
"version": "2.0.0",
"version": "2.0.1",
"homepage": "https://github.com/olahol/react-tagsinput",
"description": "Simple react.js component for inputing tags",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "react-tagsinput",
"version": "2.0.0",
"version": "2.0.1",
"description": "Simple react.js component for inputing tags",
"main": "react-tagsinput.js",
"peerDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions react-tagsinput.js
Expand Up @@ -11,6 +11,8 @@
"use strict";

var Input = React.createClass({
displayName: "Input",

render: function () {
var ns = this.props.ns;

Expand Down Expand Up @@ -40,6 +42,8 @@
});

var Tag = React.createClass({
displayName: "Tag",

render: function () {
return (
React.createElement("span", {
Expand All @@ -53,6 +57,8 @@
});

var TagsInput = React.createClass({
displayName: "TagsInput",

propTypes: {
value: React.PropTypes.array
, valueLink: React.PropTypes.object
Expand Down

0 comments on commit 6ea8328

Please sign in to comment.