Skip to content
This repository was archived by the owner on May 15, 2022. It is now read-only.

Commit 2541a3c

Browse files
committed
add some forgotten listener binds, bump 0.0.12
1 parent 930ddb4 commit 2541a3c

File tree

9 files changed

+14
-6
lines changed

9 files changed

+14
-6
lines changed

build/react-dat-gui.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,9 @@ var DatString = function (_React$Component) {
681681
var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(DatString).call(this, props, context));
682682

683683
_this.handleChange = _this.handleChange.bind(_this);
684+
_this.handleFocus = _this.handleFocus.bind(_this);
684685
_this.handleBlur = _this.handleBlur.bind(_this);
686+
_this.handleKeyDown = _this.handleKeyDown.bind(_this);
685687
return _this;
686688
}
687689

build/react-dat-gui.min.js

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

build/react-dat.gui.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.

example-es6/build/app.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20613,7 +20613,9 @@
2061320613
var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(DatString).call(this, props, context));
2061420614

2061520615
_this.handleChange = _this.handleChange.bind(_this);
20616+
_this.handleFocus = _this.handleFocus.bind(_this);
2061620617
_this.handleBlur = _this.handleBlur.bind(_this);
20618+
_this.handleKeyDown = _this.handleKeyDown.bind(_this);
2061720619
return _this;
2061820620
}
2061920621

example-es6/build/app.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.

lib/components/DatString.js

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

lib/components/DatString.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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-dat-gui",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"description": "dat.GUI reimagined for React",
55
"main": "lib/Dat.js",
66
"style": "lib/Dat.css",

src/components/DatString.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ class DatString extends React.Component {
1717
constructor(props, context) {
1818
super(props, context);
1919
this.handleChange = this.handleChange.bind(this);
20+
this.handleFocus = this.handleFocus.bind(this);
2021
this.handleBlur = this.handleBlur.bind(this);
22+
this.handleKeyDown = this.handleKeyDown.bind(this);
2123
}
2224

2325
componentWillMount() {

0 commit comments

Comments
 (0)