Skip to content

Commit

Permalink
Android Keyboard Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
claytoncarney committed May 10, 2024
1 parent 5652b41 commit edd5a2f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
4 changes: 1 addition & 3 deletions bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -7736,9 +7736,7 @@

findClick() {
const strongNum = this.inputStrongNum.value;
if (strongNum) {
queue.publish('strong-lookup.find', strongNum.toUpperCase());
}
queue.publish('strong-lookup.find', strongNum.toUpperCase());
}

getElements() {
Expand Down
2 changes: 1 addition & 1 deletion css/kjs.css
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ ul {
}

.page--hide {
order: 10;
display: none;
}

:root {
Expand Down
4 changes: 1 addition & 3 deletions js/View/StrongLookupView.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,7 @@ class StrongLookupView {

findClick() {
const strongNum = this.inputStrongNum.value;
if (strongNum) {
queue.publish('strong-lookup.find', strongNum.toUpperCase());
}
queue.publish('strong-lookup.find', strongNum.toUpperCase());
}

getElements() {
Expand Down
4 changes: 2 additions & 2 deletions sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const appCaches = [
{
name: 'core-20240509.01',
name: 'core-20240509.02',
urls: [
'/',
'/bundle.js',
Expand All @@ -17,7 +17,7 @@ const appCaches = [
]
},
{
name: 'css-20240509.03',
name: 'css-20240509.04',
urls: [
'/css/font.css',
'/css/kjs.css',
Expand Down

0 comments on commit edd5a2f

Please sign in to comment.