Skip to content

Commit

Permalink
Regenerate assets
Browse files Browse the repository at this point in the history
  • Loading branch information
nosir committed Aug 22, 2018
1 parent 5fb544c commit 7dc1d0d
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description":
"JavaScript library for formatting input text content when you are typing",
"keywords": ["cleave", "javascript", "html", "form", "input"],
"version": "1.4.3",
"version": "1.4.4",
"author": {
"name": "Max Huang",
"email": "[email protected]",
Expand Down
4 changes: 3 additions & 1 deletion dist/cleave-angular.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,9 @@ return /******/ (function(modules) { // webpackBootstrap
Util = Cleave.Util,
currentValue = owner.element.value;

if (Util.isAndroidBackspaceKeydown(owner.lastInputValue, currentValue)) {
if (charCode === 229
&& Util.isAndroidBackspaceKeydown(owner.lastInputValue, currentValue)
) {
charCode = 8;
}

Expand Down
4 changes: 2 additions & 2 deletions dist/cleave-angular.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cleave-react-node.min.js

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

2 changes: 1 addition & 1 deletion dist/cleave-react.min.js

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

4 changes: 3 additions & 1 deletion dist/cleave.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,9 @@ return /******/ (function(modules) { // webpackBootstrap
Util = Cleave.Util,
currentValue = owner.element.value;

if (Util.isAndroidBackspaceKeydown(owner.lastInputValue, currentValue)) {
if (charCode === 229
&& Util.isAndroidBackspaceKeydown(owner.lastInputValue, currentValue)
) {
charCode = 8;
}

Expand Down
4 changes: 2 additions & 2 deletions dist/cleave.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description":
"JavaScript library for formatting input text content when you are typing",
"keywords": ["cleave", "javascript", "html", "format", "form", "input"],
"version": "1.4.3",
"version": "1.4.4",
"files": ["src", "dist", "react.js"],
"author": {
"name": "Max Huang",
Expand Down

0 comments on commit 7dc1d0d

Please sign in to comment.