Skip to content

Commit

Permalink
ZK-5636: fail to toggle grid's detail on iPad/iPhone
Browse files Browse the repository at this point in the history
  • Loading branch information
JamsonChan authored and jumperchen committed Feb 21, 2024
1 parent 3e0716c commit 38ed9db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
return null;

// touch events may not be supported by this browser at all (eg. IE desktop).
if (!('TouchEvent' in global))
if (!('TouchEvent' in globalThis)) // cannot use global here for webpack imports.
return nonTouchDevice;

// Touch events are always generated from devices that fire touch events.
Expand Down
1 change: 1 addition & 0 deletions zkdoc/release-note
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ ZK 10.0.0
ZK-5639: stepbox wrong color update
ZK-5635: textbox cannot focus on iPad/iPhone
ZK-5647: Wrong groupbox layout on touch screen
ZK-5636: fail to toggle grid's detail on iPad/iPhone

* Upgrade Notes
+ Upgrade commons-fileupload to commons-fileupload2-javax 2.0.0-M2 and commons-io to 2.13.0 to support jakarta-friendly uploads
Expand Down

0 comments on commit 38ed9db

Please sign in to comment.