Skip to content

Commit dbcc999

Browse files
authored
Fix a bug where tooltips would show on iOS WebKit (#446)
* Fix a bug where tooltips would show on iOS WebKit * fix
1 parent 1f3944f commit dbcc999

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

packages/cheetah-grid/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cheetah-grid",
3-
"version": "1.16.5",
3+
"version": "1.16.6",
44
"description": "Cheetah Grid is a high performance grid engine that works on canvas",
55
"keywords": [
66
"spreadsheet",

packages/cheetah-grid/src/js/core/DrawGrid.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,7 @@ function _bindEvents(this: DrawGrid): void {
13821382
if (useTouch.timeoutId != null) clearTimeout(useTouch.timeoutId);
13831383
useTouch.timeoutId = setTimeout(() => {
13841384
useTouch = null;
1385-
}, 350);
1385+
}, 400);
13861386
}
13871387
}
13881388
handler.on(element, "touchstart", (e) => {

packages/vue-cheetah-grid/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/vue-cheetah-grid/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-cheetah-grid",
3-
"version": "1.16.5",
3+
"version": "1.16.6",
44
"description": "Cheetah Grid for Vue.js",
55
"main": "lib/index.js",
66
"unpkg": "dist/vueCheetahGrid.js",
@@ -51,7 +51,7 @@
5151
},
5252
"homepage": "https://github.com/future-architect/cheetah-grid/tree/master/packages/vue-cheetah-grid",
5353
"dependencies": {
54-
"cheetah-grid": "^1.16.2"
54+
"cheetah-grid": "^1.16.5"
5555
},
5656
"devDependencies": {
5757
"@babel/core": "^7.11.1",

0 commit comments

Comments
 (0)