Skip to content
This repository has been archived by the owner on Sep 9, 2019. It is now read-only.

Commit

Permalink
Bugfix [FormHandler]: delayForNoticeOption
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Grimes committed Aug 26, 2018
1 parent 86898c0 commit 2a9ba37
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center"><img height="150" src="https://github.com/IvanGrimes/formhandler.js/blob/master/sandbox/logo.png?raw=true" /><br>FormHandler 1.1.0</h1>
<h1 align="center"><img height="150" src="https://github.com/IvanGrimes/formhandler.js/blob/master/sandbox/logo.png?raw=true" /><br>FormHandler 1.1.1</h1>

<p align="center">
<a href="https://travis-ci.org/IvanGrimes/formhandler.js">
Expand Down
2 changes: 1 addition & 1 deletion build/js/formhandler.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/js/formhandler.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/FormHandler.esm.bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ function () {
sender.sendRequest(sender.makeData());
setTimeout(function () {
_this.notices.form.hide();
}, 2000);
}, delayForNotice);
}
} else {
_this.notices.form.show();
Expand Down
2 changes: 1 addition & 1 deletion dist/js/FormHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@
sender.sendRequest(sender.makeData());
setTimeout(function () {
_this.notices.form.hide();
}, 2000);
}, delayForNotice);
}
} else {
_this.notices.form.show();
Expand Down
4 changes: 2 additions & 2 deletions dist/js/FormHandler.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/FormHandler.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "formhandler.js",
"version": "1.1.0",
"version": "1.1.1",
"description": "Powerful pure Javascript form validator with a feature of adding your own validations",
"author": "Ivan Grimes",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/js/FormHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export default class FormHandler { // TODO: Переименовать опци

setTimeout(() => {
this.notices.form.hide();
}, 2000);
}, delayForNotice);
}
} else {
this.notices.form.show();
Expand Down

0 comments on commit 2a9ba37

Please sign in to comment.