Skip to content

Commit

Permalink
Regenerate assets
Browse files Browse the repository at this point in the history
  • Loading branch information
nosir committed Aug 15, 2018
1 parent 8ed113e commit 2a18f54
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 9 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.2",
"version": "1.4.3",
"author": {
"name": "Max Huang",
"email": "[email protected]",
Expand Down
10 changes: 9 additions & 1 deletion dist/cleave-angular.js
Original file line number Diff line number Diff line change
Expand Up @@ -1337,7 +1337,7 @@ return /******/ (function(modules) { // webpackBootstrap
},

setSelection: function (element, position, doc) {
if (element !== doc.activeElement) {
if (element !== this.getActiveElement(doc)) {
return;
}

Expand All @@ -1360,6 +1360,14 @@ return /******/ (function(modules) { // webpackBootstrap
}
}
},

getActiveElement: function(parent) {
var activeElement = parent.activeElement;
if (activeElement && activeElement.shadowRoot) {
return this.getActiveElement(activeElement.shadowRoot);
}
return activeElement;
},

isAndroid: function () {
return navigator && /android/i.test(navigator.userAgent);
Expand Down
2 changes: 1 addition & 1 deletion dist/cleave-angular.min.js

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion dist/cleave-react-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -2502,7 +2502,7 @@ return /******/ (function(modules) { // webpackBootstrap
},

setSelection: function setSelection(element, position, doc) {
if (element !== doc.activeElement) {
if (element !== this.getActiveElement(doc)) {
return;
}

Expand All @@ -2526,6 +2526,14 @@ return /******/ (function(modules) { // webpackBootstrap
}
},

getActiveElement: function getActiveElement(parent) {
var activeElement = parent.activeElement;
if (activeElement && activeElement.shadowRoot) {
return this.getActiveElement(activeElement.shadowRoot);
}
return activeElement;
},

isAndroid: function isAndroid() {
return navigator && /android/i.test(navigator.userAgent);
},
Expand Down
2 changes: 1 addition & 1 deletion dist/cleave-react-node.min.js

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion dist/cleave-react.js
Original file line number Diff line number Diff line change
Expand Up @@ -2696,7 +2696,7 @@ return /******/ (function(modules) { // webpackBootstrap
},

setSelection: function setSelection(element, position, doc) {
if (element !== doc.activeElement) {
if (element !== this.getActiveElement(doc)) {
return;
}

Expand All @@ -2720,6 +2720,14 @@ return /******/ (function(modules) { // webpackBootstrap
}
},

getActiveElement: function getActiveElement(parent) {
var activeElement = parent.activeElement;
if (activeElement && activeElement.shadowRoot) {
return this.getActiveElement(activeElement.shadowRoot);
}
return activeElement;
},

isAndroid: function isAndroid() {
return navigator && /android/i.test(navigator.userAgent);
},
Expand Down
2 changes: 1 addition & 1 deletion dist/cleave-react.min.js

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion dist/cleave.js
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,7 @@ return /******/ (function(modules) { // webpackBootstrap
},

setSelection: function (element, position, doc) {
if (element !== doc.activeElement) {
if (element !== this.getActiveElement(doc)) {
return;
}

Expand All @@ -1303,6 +1303,14 @@ return /******/ (function(modules) { // webpackBootstrap
}
}
},

getActiveElement: function(parent) {
var activeElement = parent.activeElement;
if (activeElement && activeElement.shadowRoot) {
return this.getActiveElement(activeElement.shadowRoot);
}
return activeElement;
},

isAndroid: function () {
return navigator && /android/i.test(navigator.userAgent);
Expand Down
2 changes: 1 addition & 1 deletion dist/cleave.min.js

Large diffs are not rendered by default.

0 comments on commit 2a18f54

Please sign in to comment.