Skip to content

Commit 25f4344

Browse files
author
Edward Xiao
committed
- Clean up comments.
1 parent ca9d8cb commit 25f4344

File tree

9 files changed

+3
-9
lines changed

9 files changed

+3
-9
lines changed

lib/components/Checkbox.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ function (_React$Component) {
193193
var onFocus = this.props.onFocus;
194194

195195
if (onFocus) {
196-
// this.check();
197196
onFocus(e);
198197
}
199198
}

lib/components/Textarea.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ function (_React$Component) {
208208
var onFocus = this.props.onFocus;
209209

210210
if (onFocus) {
211-
// this.check();
212211
onFocus(e);
213212
}
214213
}

lib/components/Textbox.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ function (_React$Component) {
227227
var onFocus = this.props.onFocus;
228228

229229
if (onFocus) {
230-
// this.check();
231230
onFocus(e);
232231
}
233232
}

lib/react-inputs-validation.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/react-inputs-validation.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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-inputs-validation",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"description": "React inputs validation component",
55
"main": "index.js",
66
"repository": {

src/js/Inputs/Checkbox.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ class Index extends React.Component<Props, State> {
180180
onFocus(e: React.FocusEvent<HTMLElement>) {
181181
const { onFocus } = this.props;
182182
if (onFocus) {
183-
// this.check();
184183
onFocus(e);
185184
}
186185
}

src/js/Inputs/Textarea.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ class Index extends React.Component<Props, State> {
196196
onFocus(e: React.FocusEvent<HTMLElement>) {
197197
const { onFocus } = this.props;
198198
if (onFocus) {
199-
// this.check();
200199
onFocus(e);
201200
}
202201
}

src/js/Inputs/Textbox.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ class Index extends React.Component<Props, State> {
208208
onFocus(e: React.FocusEvent<HTMLElement>) {
209209
const { onFocus } = this.props;
210210
if (onFocus) {
211-
// this.check();
212211
onFocus(e);
213212
}
214213
}

0 commit comments

Comments
 (0)