Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.

Commit 412b122

Browse files
committed
forgot to build, new projects man, new projects
1 parent 53da6ce commit 412b122

File tree

7 files changed

+42
-39
lines changed

7 files changed

+42
-39
lines changed

build/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,10 @@ Accessible, extensible, Autocomplete for React.js.
55

66
Docs coming soon, for now just look at the `propTypes` and examples :)
77

8+
Stuff we need help with:
9+
10+
- mobile support verification generally
11+
- default mobile styles/positioniong (you'll notice the styles are
12+
pretty lean, on purpose, apps should style this however they'd like)
13+
- tests (eventually)
14+

build/lib/Autocomplete.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var Autocomplete = React.createClass({
2626
onChange: function onChange() {},
2727
onSelect: function onSelect(value, item) {},
2828
renderMenu: function renderMenu(items, value, style) {
29-
return React.createElement('div', { style: _extends({ style: style }, this.menuStyle), children: items });
29+
return React.createElement('div', { style: _extends({}, style, this.menuStyle), children: items });
3030
},
3131
shouldItemRender: function shouldItemRender() {
3232
return true;
@@ -93,7 +93,6 @@ var Autocomplete = React.createClass({
9393
handleChange: function handleChange(event) {
9494
var _this = this;
9595

96-
console.log(event.target.value);
9796
this._performAutoCompleteOnKeyUp = true;
9897
this.setState({
9998
value: event.target.value

build/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "react-autocomplete",
3-
"version": "0.1.0",
3+
"version": "0.1.3",
44
"description": "Accessible, extensible, Autocomplete for React.js",
5-
"main": "./lib/index.js",
5+
"main": "./build/lib/index.js",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/rackt/react-autocomplete.git"

dist/react-autocomplete.js

Lines changed: 29 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-autocomplete.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-autocomplete.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-autocomplete.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)